diff options
Diffstat (limited to 'host/include/uhd/utils/math.hpp')
-rw-r--r-- | host/include/uhd/utils/math.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/utils/math.hpp b/host/include/uhd/utils/math.hpp index ef7bfb6b7..088983167 100644 --- a/host/include/uhd/utils/math.hpp +++ b/host/include/uhd/utils/math.hpp @@ -34,8 +34,8 @@ namespace math { /*! * Numeric limits of certain types. * - * There are many sources for getting these, including std::numeric_limts, - * <cstdint>, <climits>, and Boost. The <cstdint> option is preferable as it + * There are many sources for getting these, including std::numeric_limits, + * `<cstdint>`, `<climits>`, and Boost. The `<cstdint>` option is preferable as it * gives us fixed-width constants, but unfortunately is new as of C++11. * Since this isn't available on many systems, we need to use one of the * other options. We will use the Boost option, here, since we use Boost |