From f41fa6d10a66339728e4c2643cb1bc29b9b68ba4 Mon Sep 17 00:00:00 2001 From: Reza Rastak Date: Sat, 9 May 2020 09:48:16 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Wolfgang Bangerth --- doc/doxygen/headers/c++.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/doxygen/headers/c++.h b/doc/doxygen/headers/c++.h index 0cbeebf433..4c15bf50b8 100644 --- a/doc/doxygen/headers/c++.h +++ b/doc/doxygen/headers/c++.h @@ -59,7 +59,7 @@ * [constexpr](https://en.cppreference.com/w/cpp/language/constexpr) * variables and function. The variables defined as `constexpr` are constant * values that are computed during the compilation of the program and therefore - * have zero runtime cost associated to their initialization. Additionally, + * have zero runtime cost associated with their initialization. Additionally, * `constexpr` constants have properly defined lifetimes which prevent the * so-called "static initialization order fiasco" completely. %Functions can be * marked as `constexpr`, indicating that they can produce compile-time @@ -76,7 +76,7 @@ * @endcode * Here, the contents of A are not stored on the stack. Rather, they are * initialized during compile time and inserted into the `.data` portion - * of the executable program. The program can use these values in runtime + * of the executable program. The program can use these values at runtime * without spending time for initialization. Initializing tensors can be * simplified in one line. * @code -- 2.39.5