docs: typo fixed

Relates to #316
This commit is contained in:
Mateusz Pusz
2021-11-26 10:30:20 +01:00
parent 571df5ed33
commit ab351433ee

View File

@@ -103,7 +103,7 @@ the C++ Standard Library types:
const auto qp1 = quantity_point{sys_seconds{1s}}; const auto qp1 = quantity_point{sys_seconds{1s}};
const auto tp1 = to_std_time_point(qp1); // OK const auto tp1 = to_std_time_point(qp1); // OK
conat auto qp2 = quantity_point{1 * s}; const auto qp2 = quantity_point{1 * s};
const auto tp2 = to_std_time_point(qp2); // Compile-time Error const auto tp2 = to_std_time_point(qp2); // Compile-time Error
Here is an example of how interoperatibility described in this chapter can be used in practice:: Here is an example of how interoperatibility described in this chapter can be used in practice::