about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--docs/dev/style.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index 428cee3adbe..6dc6868c2cc 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -294,8 +294,9 @@ Prefer `Default` even it has to be implemented manually.
 
 **Rationale:** less typing in the common case, uniformity.
 
-Use `Vec::new` rather than `vec![]`. **Rationale:** uniformity, strength
-reduction.
+Use `Vec::new` rather than `vec![]`.
+
+**Rationale:** uniformity, strength reduction.
 
 ## Functions Over Objects
 
@@ -479,7 +480,7 @@ pub fn reachable_nodes(node: Node) -> FxHashSet<Node> {
 }
 ```
 
-**Rational:** re-use allocations, accumulator style is more concise for complex cases.
+**Rationale:** re-use allocations, accumulator style is more concise for complex cases.
 
 # Style