diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2023-06-28 18:08:54 -0700 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2023-06-28 18:08:54 -0700 |
| commit | 03e64f409f6aea697e43e3985353d7796cd102f2 (patch) | |
| tree | 45c4583a9643075492ff682f53d28fce462aa83f /src | |
| parent | eb76764ea412b36f670564f5d58c317cec8fa496 (diff) | |
| download | rust-03e64f409f6aea697e43e3985353d7796cd102f2.tar.gz rust-03e64f409f6aea697e43e3985353d7796cd102f2.zip | |
style-guide: Document newline rules for assignment operators
The style guide gives general rules for binary operators including assignment, and one of those rules says to put the operator on the subsequent line; the style guide needs to explicitly state the exception of breaking *after* assignment operators rather than before. This is already what rustfmt does and what users do; this fixes the style guide to match the expected default style.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/style-guide/src/expressions.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc/style-guide/src/expressions.md b/src/doc/style-guide/src/expressions.md index 8271b42da4c..0edf848c1e6 100644 --- a/src/doc/style-guide/src/expressions.md +++ b/src/doc/style-guide/src/expressions.md @@ -294,8 +294,9 @@ Use parentheses liberally, do not necessarily elide them due to precedence. Tools should not automatically insert or remove parentheses. Do not use spaces to indicate precedence. -If line-breaking, put the operator on a new line and block indent. Put each -sub-expression on its own line. E.g., +If line-breaking, block-indent each subsequent line. For assignment operators, +break after the operator; for all other operators, put the operator on the +subsequent line. Put each sub-expression on its own line: ```rust foo_bar |
