From ab351433ee6b20dfb548c1523607fd38569d53c4 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Fri, 26 Nov 2021 10:30:20 +0100 Subject: [PATCH] docs: typo fixed Relates to #316 --- docs/use_cases/interoperability.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/use_cases/interoperability.rst b/docs/use_cases/interoperability.rst index 694d5346..a229b018 100644 --- a/docs/use_cases/interoperability.rst +++ b/docs/use_cases/interoperability.rst @@ -103,7 +103,7 @@ the C++ Standard Library types: const auto qp1 = quantity_point{sys_seconds{1s}}; 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 Here is an example of how interoperatibility described in this chapter can be used in practice::