From bf8e244f703da5ba82303fcf907dee2897387c66 Mon Sep 17 00:00:00 2001 From: Chris Keele Date: Thu, 26 Sep 2024 13:54:54 -0500 Subject: [PATCH] Document new unused `...` operator in correct place in operators.md --- lib/elixir/pages/references/operators.md | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/elixir/pages/references/operators.md b/lib/elixir/pages/references/operators.md index 8cefd445bcd..d6816213688 100644 --- a/lib/elixir/pages/references/operators.md +++ b/lib/elixir/pages/references/operators.md @@ -131,6 +131,7 @@ The following is a table of all the operators that Elixir is capable of parsing, * `<~>` * `+++` * `---` + * `...` The following operators are used by the `Bitwise` module when imported: [`&&&`](`Bitwise.&&&/2`), [`<<<`](`Bitwise.<<>>`](`Bitwise.>>>/2`), and [`|||`](`Bitwise.|||/2`). See the `Bitwise` documentation for more information.