diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-08-10 19:45:17 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-08-10 19:46:13 +0900 |
commit | 0ca6b973e89889f1ce0dbbc05da780cb75776bfe (patch) | |
tree | 409b6ffa30f2ab921944f2096eef361ea8953d25 /array.c | |
parent | 17d869c7d65534a18885162ea4daa78ade3254d6 (diff) |
Removed non-ASCII code to suppress warnings by localized compilers
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5809,7 +5809,7 @@ recursive_cmp(VALUE ary1, VALUE ary2, int recur) /* * call-seq: - * array <=> other_array → -1, 0, or 1 + * array <=> other_array -> -1, 0, or 1 * * Returns -1, 0, or 1 as +self+ is less than, equal to, or greater than +other_array+. * For each index +i+ in +self+, evaluates <tt>result = self[i] <=> other_array[i]</tt>. @@ -6558,7 +6558,7 @@ ary_min_opt_string(VALUE ary, long i, VALUE vmin) * array.min -> element * array.min { |a, b| ... } -> element * array.min(n) -> new_array - * ary.min(n) { |a, b| ... } → new_array + * ary.min(n) { |a, b| ... } -> new_array * * Returns one of the following: * - The minimum-valued element from +self+. |