diff options
Diffstat (limited to 'include/ruby/internal/compiler_since.h')
-rw-r--r-- | include/ruby/internal/compiler_since.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/internal/compiler_since.h b/include/ruby/internal/compiler_since.h index 92abb8acc8..b213cfd8b9 100644 --- a/include/ruby/internal/compiler_since.h +++ b/include/ruby/internal/compiler_since.h @@ -30,7 +30,7 @@ * @param y Minor version. * @param z Patchlevel. * @retval true cc >= x.y.z. - * @retval false oherwise. + * @retval false otherwise. */ #define RBIMPL_COMPILER_SINCE(cc, x, y, z) \ (RBIMPL_COMPILER_IS(cc) && \ @@ -48,7 +48,7 @@ * @param y Minor version. * @param z Patchlevel. * @retval true cc < x.y.z. - * @retval false oherwise. + * @retval false otherwise. */ #define RBIMPL_COMPILER_BEFORE(cc, x, y, z) \ (RBIMPL_COMPILER_IS(cc) && \ |