From a15c3b2660bf4102bc881a5bc11959bc136f4a17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sun, 17 Dec 2023 15:29:19 +0100 Subject: [PATCH] docs: remove deprecated table constructor from breaking changes (#698) --- BREAKING-CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BREAKING-CHANGES.md b/BREAKING-CHANGES.md index 2e5472a4..5ae5d794 100644 --- a/BREAKING-CHANGES.md +++ b/BREAKING-CHANGES.md @@ -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])