diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-12-20 09:19:39 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-12-20 09:32:42 +0900 |
commit | db166290088fb7d39d01f68b9860253893d4f1a7 (patch) | |
tree | 68c1b2c3e7ff00ed5cd6a214e6644a28dca22261 /include/ruby | |
parent | 2898367b3a1de00ca78067cc17dd4d1f8df37778 (diff) | |
download | ruby-db166290088fb7d39d01f68b9860253893d4f1a7.tar.gz |
Fixed misspellings
Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec.
Diffstat (limited to 'include/ruby')
-rw-r--r-- | include/ruby/backward/cxxanyargs.hpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/include/ruby/backward/cxxanyargs.hpp b/include/ruby/backward/cxxanyargs.hpp index a2e63f2943..3585f678b8 100644 --- a/include/ruby/backward/cxxanyargs.hpp +++ b/include/ruby/backward/cxxanyargs.hpp @@ -47,7 +47,7 @@ typedef int int_type(ANYARGS); /// @name Hooking global variables /// @{ -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Define a function-backended global variable. /// @param[in] q Name of the variable. /// @param[in] w Getter function. @@ -63,7 +63,7 @@ rb_define_virtual_variable(const char *q, type *w, void_type *e) ::rb_define_virtual_variable(q, r, t); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Define a function-backended global variable. /// @param[in] q Name of the variable. /// @param[in] w Getter function. @@ -78,7 +78,7 @@ rb_define_virtual_variable(const char *q, rb_gvar_getter_t *w, void_type *e) ::rb_define_virtual_variable(q, w, t); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Define a function-backended global variable. /// @param[in] q Name of the variable. /// @param[in] w Getter function. @@ -93,7 +93,7 @@ rb_define_virtual_variable(const char *q, type *w, rb_gvar_setter_t *e) ::rb_define_virtual_variable(q, r, e); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Define a function-backended global variable. /// @param[in] q Name of the variable. /// @param[in] w Variable storage. @@ -110,7 +110,7 @@ rb_define_hooked_variable(const char *q, VALUE *w, type *e, void_type *r) ::rb_define_hooked_variable(q, w, t, y); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Define a function-backended global variable. /// @param[in] q Name of the variable. /// @param[in] w Variable storage. @@ -126,7 +126,7 @@ rb_define_hooked_variable(const char *q, VALUE *w, rb_gvar_getter_t *e, void_typ ::rb_define_hooked_variable(q, w, e, y); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Define a function-backended global variable. /// @param[in] q Name of the variable. /// @param[in] w Variable storage. @@ -146,7 +146,7 @@ rb_define_hooked_variable(const char *q, VALUE *w, type *e, rb_gvar_setter_t *r) /// @name Exceptions and tag jumps /// @{ -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Old way to implement iterators. /// @param[in] q A function that can yield. /// @param[in] w Passed to `q`. @@ -163,7 +163,7 @@ rb_iterate(VALUE(*q)(VALUE), VALUE w, type *e, VALUE r) return ::rb_iterate(q, w, t, r); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Call a method with a block. /// @param[in] q The self. /// @param[in] w The method. @@ -181,7 +181,7 @@ rb_block_call(VALUE q, ID w, int e, const VALUE *r, type *t, VALUE y) return ::rb_block_call(q, w, e, r, u, y); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief An equivalent of `rescue` clause. /// @param[in] q A function that can raise. /// @param[in] w Passed to `q`. @@ -204,7 +204,7 @@ rb_rescue(type *q, VALUE w, type *e, VALUE r) return ::rb_rescue(t, w, y, r); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief An equivalent of `rescue` clause. /// @param[in] q A function that can raise. /// @param[in] w Passed to `q`. @@ -232,7 +232,7 @@ rb_rescue2(type *q, VALUE w, type *e, VALUE r, ...) return ret; } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief An equivalent of `ensure` clause. /// @param[in] q A function that can raise. /// @param[in] w Passed to `q`. @@ -253,7 +253,7 @@ rb_ensure(type *q, VALUE w, type *e, VALUE r) return ::rb_ensure(t, w, y, r); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief An equivalent of `Kernel#catch`. /// @param[in] q The "tag" string. /// @param[in] w A function that can throw. @@ -272,7 +272,7 @@ rb_catch(const char *q, type *w, VALUE e) return ::rb_catch(q, r, e); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief An equivalent of `Kernel#catch`. /// @param[in] q The "tag" object. /// @param[in] w A function that can throw. @@ -295,7 +295,7 @@ rb_catch_obj(VALUE q, type *w, VALUE e) /// @name Procs, Fibers and Threads /// @{ -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Creates a @ref rb_cFiber instance. /// @param[in] q The fiber body. /// @param[in] w Passed to `q`. @@ -311,7 +311,7 @@ rb_fiber_new(type *q, VALUE w) return ::rb_fiber_new(e, w); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Creates a @ref rb_cProc instance. /// @param[in] q The proc body. /// @param[in] w Passed to `q`. @@ -327,7 +327,7 @@ rb_proc_new(type *q, VALUE w) return ::rb_proc_new(e, w); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Creates a @ref rb_cThread instance. /// @param[in] q The thread body. /// @param[in] w Passed to `q`. @@ -348,7 +348,7 @@ rb_thread_create(type *q, void *w) /// @name Hash and st_table /// @{ -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Iteration over the given table. /// @param[in] q A table to scan. /// @param[in] w A function to iterate. @@ -366,7 +366,7 @@ st_foreach(st_table *q, int_type *w, st_data_t e) return ::st_foreach(q, r, e); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Iteration over the given table. /// @param[in] q A table to scan. /// @param[in] w A function to iterate. @@ -384,7 +384,7 @@ st_foreach_check(st_table *q, int_type *w, st_data_t e, st_data_t) return ::st_foreach_check(q, t, e, 0); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Iteration over the given table. /// @param[in] q A table to scan. /// @param[in] w A function to iterate. @@ -400,7 +400,7 @@ st_foreach_safe(st_table *q, int_type *w, st_data_t e) ::st_foreach_safe(q, r, e); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Iteration over the given hash. /// @param[in] q A hash to scan. /// @param[in] w A function to iterate. @@ -416,7 +416,7 @@ rb_hash_foreach(VALUE q, int_type *w, VALUE e) ::rb_hash_foreach(q, r, e); } -RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprected") +RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated") /// @brief Iteration over each instance variable of the object. /// @param[in] q An object. /// @param[in] w A function to iterate. |