Skip to content

Commit c7064f7

Browse files
committed
docs: minor documentation improvements
1 parent 80544a1 commit c7064f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/reference/cheat_sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ double speed_value = (100 * km / h).force_numerical_value_in(m / s); // 27 (2)
374374
// quantity<si::metre, int> invalid = 1.5 * m; // ✗ Error: double → int needs explicit cast
375375
```
376376

377-
=== "Affine Space Safety"
377+
=== "Mathematical Space Safety"
378378

379379
Distinguishes absolute points from relative differences (vectors):
380380

docs/tutorials/quick_start/simple_math.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ quantity result = 1 * km + 2000 * m; // Result: 3000 m
9090

9191
Try these in the editor above:
9292

93-
1. **Calculate fuel efficiency**: `quantity fuel = 50 * l;` then `total_distance / fuel` (km/L)
93+
1. **Calculate fuel efficiency**: `quantity fuel = 50 * L;` then `total_distance / fuel` (km/L)
9494
2. **Multiple operations**: Try `(trip1 + trip2) / (time * 2)`
9595
3. **Acceleration**: `quantity velocity = 30 * m / s; quantity duration = 5 * s;` then
9696
`velocity / duration`

0 commit comments

Comments
 (0)