Commit ad3c7855 authored by Bruce Mitchener's avatar Bruce Mitchener Committed by Victor Zverovich

Fix typos.

parent 7512a55a
...@@ -298,7 +298,7 @@ ...@@ -298,7 +298,7 @@
`#1222 <https://github.com/fmtlib/fmt/issues/1222>`_). `#1222 <https://github.com/fmtlib/fmt/issues/1222>`_).
Thanks `@alabuzhev (Alex Alabuzhev) <https://github.com/alabuzhev>`_. Thanks `@alabuzhev (Alex Alabuzhev) <https://github.com/alabuzhev>`_.
* Fixed bugs discovered by fuzzing or during fuzzing integation * Fixed bugs discovered by fuzzing or during fuzzing integration
(`#1124 <https://github.com/fmtlib/fmt/issues/1124>`_, (`#1124 <https://github.com/fmtlib/fmt/issues/1124>`_,
`#1127 <https://github.com/fmtlib/fmt/issues/1127>`_, `#1127 <https://github.com/fmtlib/fmt/issues/1127>`_,
`#1132 <https://github.com/fmtlib/fmt/issues/1132>`_, `#1132 <https://github.com/fmtlib/fmt/issues/1132>`_,
......
...@@ -403,7 +403,7 @@ inline bool isfinite(T value) { ...@@ -403,7 +403,7 @@ inline bool isfinite(T value) {
return std::isfinite(value); return std::isfinite(value);
} }
// Convers value to int and checks that it's in the range [0, upper). // Converts value to int and checks that it's in the range [0, upper).
template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)> template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
inline int to_nonnegative_int(T value, int upper) { inline int to_nonnegative_int(T value, int upper) {
FMT_ASSERT(value >= 0 && value <= upper, "invalid value"); FMT_ASSERT(value >= 0 && value <= upper, "invalid value");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment