Fix missing word · rust-lang/rust@e2d9c0d (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit e2d9c0d
and
committed
Fix missing word
Co-authored-by: Caleb Cartwright calebcartwright@users.noreply.github.com
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -330,7 +330,7 @@ than at other binary operators. | ||
330 | 330 | |
331 | 331 | If line-breaking a binary operator (including assignment operators) where the |
332 | 332 | first operand spans multiple lines, use the base indentation of the *last* |
333 | -line of the first , and indent relative to that: | |
333 | +line of the first operand, and indent relative to that: | |
334 | 334 | |
335 | 335 | ```rust |
336 | 336 | impl SomeType { |