docs: "Getting Started" chapters updated

This commit is contained in:
Mateusz Pusz
2023-10-25 14:12:25 +02:00
parent 5cc7fb1f0b
commit 0b3618d723
5 changed files with 102 additions and 101 deletions

View File

@@ -32,7 +32,7 @@ static_assert(1000 / (1 * s) == 1 * kHz);
This library requires some C++20 features ([concepts and constraints](https://en.cppreference.com/w/cpp/language/constraints),
[classes as NTTP](https://en.cppreference.com/w/cpp/language/template_parameters), ...). Thanks to them,
the user gets a powerful but still easy-to-use interface where all unit conversions and dimensional analysis can be
a user gets a powerful but still easy-to-use interface where all unit conversions and dimensional analysis can be
performed without sacrificing accuracy. Please see the below example for a quick preview of basic library features:
*[NTTP]: Non-Type Template Parameter