ruby-changes:73081
From: spaette <ko1@a...>
Date: Sun, 28 Aug 2022 06:43:18 +0900 (JST)
Subject: [ruby-changes:73081] a797ded8e2 (master): typos
https://git.ruby-lang.org/ruby.git/commit/?id=a797ded8e2 From a797ded8e2637de91dd4dd5b54bed515f6cda08a Mon Sep 17 00:00:00 2001 From: spaette <lindblad@g...> Date: Sat, 27 Aug 2022 16:09:55 -0500 Subject: typos --- include/ruby/assert.h | 2 +- include/ruby/internal/arithmetic.h | 3 ++- include/ruby/internal/attr/nodiscard.h | 2 +- include/ruby/internal/intern/select/posix.h | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/ruby/assert.h b/include/ruby/assert.h index c9f2c3fbef..0c052363bc 100644 --- a/include/ruby/assert.h +++ b/include/ruby/assert.h @@ -103,7 +103,7 @@ https://github.com/ruby/ruby/blob/trunk/include/ruby/assert.h#L103 # /* keep NDEBUG undefined */ #elif (RBIMPL_NDEBUG == 0) && (RBIMPL_RUBY_DEBUG == 0) -# /* The (*1) situation in avobe diagram. */ +# /* The (*1) situation in above diagram. */ # define RUBY_DEBUG 0 # define RUBY_NDEBUG 1 # define NDEBUG diff --git a/include/ruby/internal/arithmetic.h b/include/ruby/internal/arithmetic.h index 3f7840c384..437a141d2a 100644 --- a/include/ruby/internal/arithmetic.h +++ b/include/ruby/internal/arithmetic.h @@ -18,7 +18,8 @@ https://github.com/ruby/ruby/blob/trunk/include/ruby/internal/arithmetic.h#L18 * Do not expect for instance `__VA_ARGS__` is always available. * We assume C99 for ruby itself but we don't assume languages of * extension libraries. They could be written in C++98. - * @brief Conversion between C's arithmtic types and Ruby's numeric types. + * @brief Conversion between C's arithmetic types and Ruby's numeric types + * . */ #include "ruby/internal/arithmetic/char.h" #include "ruby/internal/arithmetic/double.h" diff --git a/include/ruby/internal/attr/nodiscard.h b/include/ruby/internal/attr/nodiscard.h index 087192a7a8..c3ae118942 100644 --- a/include/ruby/internal/attr/nodiscard.h +++ b/include/ruby/internal/attr/nodiscard.h @@ -26,7 +26,7 @@ https://github.com/ruby/ruby/blob/trunk/include/ruby/internal/attr/nodiscard.h#L26 /** * Wraps (or simulates) `[[nodiscard]]`. In C++ (at least since C++20) a - * nodiscard attribute can have a message why the result shall not be ignoed. + * nodiscard attribute can have a message why the result shall not be ignored. * However GCC attribute and SAL annotation cannot take them. */ #if RBIMPL_HAS_CPP_ATTRIBUTE(nodiscard) diff --git a/include/ruby/internal/intern/select/posix.h b/include/ruby/internal/intern/select/posix.h index 5f828e66e2..0a9b0b2e51 100644 --- a/include/ruby/internal/intern/select/posix.h +++ b/include/ruby/internal/intern/select/posix.h @@ -136,7 +136,7 @@ rb_fd_max(const rb_fdset_t *f) https://github.com/ruby/ruby/blob/trunk/include/ruby/internal/intern/select/posix.h#L136 } /** @cond INTERNAL_MACRO */ -/* :FIXME: What are these? They don't exist for shibling implementations. */ +/* :FIXME: What are these? They don't exist for sibling implementations. */ #define rb_fd_init_copy(d, s) (*(d) = *(s)) #define rb_fd_term(f) ((void)(f)) /** @endcond */ -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/