mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #6030 from jbampton/standardize-dots
Standardize docs to use 3 dots: `...`
This commit is contained in:
@@ -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 = ...
|
||||
|
||||
@@ -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
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user