docs: 2.3.0 release announcement draft text alignment fixed

This commit is contained in:
Mateusz Pusz
2024-06-24 15:17:33 -05:00
parent fc76cb28d6
commit b2307daeb6

View File

@@ -64,9 +64,9 @@ Here are the main points of this new design:
syntax. This will provide an implicit zeroth point origin.
3. For units that specify a point origin (`si::kelvin`, `si::degree_Celsius`, and
   `usc::degree_Fahrenheit`), the user always needs to specify a modifier. This means that:
    - `4 * deg_C` does not compile,
    - `4 * delta<deg_C>` creates a `quantity`.
    - `4 * absolute<deg_C>` creates a `quantity_point`.
- `4 * deg_C` does not compile,
- `4 * delta<deg_C>` creates a `quantity`.
- `4 * absolute<deg_C>` creates a `quantity_point`.
4. The 2-parameter `quantity` constructor requires the same:
```cpp