Merge pull request #6030 from jbampton/standardize-dots

Standardize docs to use 3 dots: `...`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-07-24 08:21:16 +09:00
committed by GitHub
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ conf.linker do |linker|
linker.flags_before_libraries = ...
linker.libraries = ...
linker.flags_after_libraries = ...
linker.library_paths = ....
linker.library_paths = ...
linker.option_library = ...
linker.option_library_path = ...
linker.link_options = ...
+2 -2
View File
@@ -18,10 +18,10 @@ This is the same for `MRuby::CrossBuild`.
# build_config.rb
MRuby::Build.new do |conf|
.....
...
conf.defines << 'MRB_GC_FIXED_ARENA'
conf.defines << 'MRB_NO_METHOD_CACHE'
.....
...
end
```
@@ -574,7 +574,7 @@ class Enumerator
#
# Examples of usage:
#
# Enumerator.produce(1, &:succ) # => enumerator of 1, 2, 3, 4, ....
# Enumerator.produce(1, &:succ) # => enumerator of 1, 2, 3, 4, ...
#
# Enumerator.produce { rand(10) } # => infinite random number sequence
#