docs: remove deprecated table constructor from breaking changes (#698)

This commit is contained in:
Orhun Parmaksız 2023-12-17 15:29:19 +01:00 committed by GitHub
parent 41c44a4af6
commit a15c3b2660
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@ E.g.
```diff
- let table = Table::new(rows).widths(&[Constraint::Length(1)]);
// becomes
+ let table = Table::new(rows).widths([Constraint::Length(1)]);
+ let table = Table::new(rows, [Constraint::Length(1)]);
```
### Layout::new() now accepts direction and constraint parameters ([#557])