diff --git a/src/doc/style-guide/src/expressions.md b/src/doc/style-guide/src/expressions.md index fec6ae5acf3..633fdc909bd 100644 --- a/src/doc/style-guide/src/expressions.md +++ b/src/doc/style-guide/src/expressions.md @@ -456,12 +456,15 @@ let foo = bar If the length of the last line of the first element plus its indentation is less than or equal to the indentation of the second line, then combine the -first and second lines if they fit: +first and second lines if they fit. Apply this rule recursively. ```rust x.baz? .qux() +x.y.z + .qux() + let foo = x .baz? .qux();