From: Reza Rastak Date: Sat, 9 May 2020 16:48:16 +0000 (-0700) Subject: Apply suggestions from code review X-Git-Tag: v9.2.0-rc1~58^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f41fa6d10a66339728e4c2643cb1bc29b9b68ba4;p=dealii.git Apply suggestions from code review Co-authored-by: Wolfgang Bangerth --- 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