diff --git a/docs/blog/posts/2.1.0-released.md b/docs/blog/posts/2.1.0-released.md index 8bb0b9551..4074b66e8 100644 --- a/docs/blog/posts/2.1.0-released.md +++ b/docs/blog/posts/2.1.0-released.md @@ -138,7 +138,7 @@ confusing and limiting. This is why, in this version, the `absolute_point_origin to be able to detect between points that should be considered different from the ones that should be equivalent. -*[CRTP]: Curiously Recurring Template Pattern +*[CRTP]: Curiously Recurring Template Parameter If we derive from the same instantiation of `absolute_point_origin` we end up with an equivalent point origin. This change allows us to provide different names for the same temperature points: diff --git a/docs/users_guide/framework_basics/systems_of_quantities.md b/docs/users_guide/framework_basics/systems_of_quantities.md index c87e493fc..f7e88d644 100644 --- a/docs/users_guide/framework_basics/systems_of_quantities.md +++ b/docs/users_guide/framework_basics/systems_of_quantities.md @@ -136,7 +136,7 @@ from such an instantiation. is provided and used consistently through the library to allow the code to compile with C++20 compilers, thanks to the CRTP usage under the hood. - *[CRTP]: Curiously Recurring Template Pattern + *[CRTP]: Curiously Recurring Template Parameter For example, here is how the above quantity kind tree can be modeled in the library: diff --git a/docs/users_guide/use_cases/wide_compatibility.md b/docs/users_guide/use_cases/wide_compatibility.md index b995358c5..6311103dc 100644 --- a/docs/users_guide/use_cases/wide_compatibility.md +++ b/docs/users_guide/use_cases/wide_compatibility.md @@ -145,7 +145,7 @@ added in C++23 to remove the need for CRTP idiom, which significantly simplifies This macro benefits from the new C++23 feature if available. Otherwise, it uses the CRTP idiom under the hood. -*[CRTP]: Curiously Recurring Template Pattern +*[CRTP]: Curiously Recurring Template Parameter ### `MP_UNITS_STD_FMT`