From 14b4f5953b225e39fa528ceae061d74938c81c46 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 23 Jul 2023 03:39:03 +1000 Subject: [PATCH] Standardize docs to use 3 dots: `...` --- doc/guides/compile.md | 2 +- doc/guides/mrbconf.md | 4 ++-- mrbgems/mruby-enumerator/mrblib/enumerator.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/guides/compile.md b/doc/guides/compile.md index cc21c4d5c..579a49d7a 100644 --- a/doc/guides/compile.md +++ b/doc/guides/compile.md @@ -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 = ... diff --git a/doc/guides/mrbconf.md b/doc/guides/mrbconf.md index 291b7c767..dc1538506 100644 --- a/doc/guides/mrbconf.md +++ b/doc/guides/mrbconf.md @@ -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 ``` diff --git a/mrbgems/mruby-enumerator/mrblib/enumerator.rb b/mrbgems/mruby-enumerator/mrblib/enumerator.rb index 65cddbdac..4cc18efd5 100644 --- a/mrbgems/mruby-enumerator/mrblib/enumerator.rb +++ b/mrbgems/mruby-enumerator/mrblib/enumerator.rb @@ -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 #