mirror of
https://github.com/ratatui-org/ratatui
synced 2025-02-18 06:58:51 +00:00
docs(breaking-changes): fix the PR link (#1294)
This commit is contained in:
parent
6e7b4e4d55
commit
d468463fc6
1 changed files with 2 additions and 2 deletions
|
@ -82,9 +82,9 @@ type will need to be rewritten as the compiler cannot infer the correct type.
|
||||||
- Axis::default().labels("a".into(), "b".into())
|
- Axis::default().labels("a".into(), "b".into())
|
||||||
+ Axis::default().labels("a", "b")
|
+ Axis::default().labels("a", "b")
|
||||||
|
|
||||||
### `Layout::init_cache` no longer returns bool and takes a `NonZeroUsize` instead of `usize` ([#1145])
|
### `Layout::init_cache` no longer returns bool and takes a `NonZeroUsize` instead of `usize` ([#1245])
|
||||||
|
|
||||||
[#1145]: https://github.com/ratatui-org/ratatui/pull/1145
|
[#1245]: https://github.com/ratatui-org/ratatui/pull/1245
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
- let is_initialized = Layout::init_cache(100);
|
- let is_initialized = Layout::init_cache(100);
|
||||||
|
|
Loading…
Add table
Reference in a new issue