diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-12-20 09:19:39 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-12-20 09:32:42 +0900 |
commit | db166290088fb7d39d01f68b9860253893d4f1a7 (patch) | |
tree | 68c1b2c3e7ff00ed5cd6a214e6644a28dca22261 /doc | |
parent | 2898367b3a1de00ca78067cc17dd4d1f8df37778 (diff) |
Fixed misspellings
Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/NEWS-2.5.0 | 2 | ||||
-rw-r--r-- | doc/contributing.rdoc | 2 | ||||
-rw-r--r-- | doc/extension.rdoc | 2 | ||||
-rw-r--r-- | doc/syntax/miscellaneous.rdoc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/NEWS-2.5.0 b/doc/NEWS-2.5.0 index 221c0328c1..c891317b61 100644 --- a/doc/NEWS-2.5.0 +++ b/doc/NEWS-2.5.0 @@ -68,7 +68,7 @@ with all sufficient information, see the ChangeLog file or Redmine * File.rename releases GVL. [Feature #13951] * File::Stat#atime, File::Stat#mtime and File::Stat#ctime support fractional second timestamps on Windows 8 and later. [Feature #13726] - * File::Stat#ino and File.indentical? support ReFS 128bit ino on Windows 8.1 + * File::Stat#ino and File.identical? support ReFS 128bit ino on Windows 8.1 and later. [Feature #13731] * File.readable?, File.readable_real?, File.writable?, File.writable_real?, File.executable?, File.executable_real?, File.mkfifo, File.readlink, diff --git a/doc/contributing.rdoc b/doc/contributing.rdoc index 95e5b6dd28..68dda66e46 100644 --- a/doc/contributing.rdoc +++ b/doc/contributing.rdoc @@ -389,7 +389,7 @@ When you're ready to commit: This will open your editor in which you write your commit message. Use the following style for commit messages: -* Use a succint subject line. +* Use a succinct subject line. * Include reasoning behind the change in the commit message, focusing on why the change is being made. * Refer to redmine issue (such as Fixes [Bug #1234] or Implements diff --git a/doc/extension.rdoc b/doc/extension.rdoc index 79d25e4249..79eb96d518 100644 --- a/doc/extension.rdoc +++ b/doc/extension.rdoc @@ -726,7 +726,7 @@ RUBY_TYPED_FREE_IMMEDIATELY :: You can specify this flag if the dfree never unlocks Ruby's internal lock (GVL). - If this flag is not set, Ruby defers invokation of dfree() + If this flag is not set, Ruby defers invocation of dfree() and invokes dfree() at the same time as finalizers. RUBY_TYPED_WB_PROTECTED :: diff --git a/doc/syntax/miscellaneous.rdoc b/doc/syntax/miscellaneous.rdoc index d5691f8d60..87ec059ae7 100644 --- a/doc/syntax/miscellaneous.rdoc +++ b/doc/syntax/miscellaneous.rdoc @@ -13,7 +13,7 @@ most frequently used with <code>ruby -e</code>. Ruby does not require any indentation. Typically, ruby programs are indented two spaces. -If you run ruby with warnings enabled and have an indentation mis-match, you +If you run ruby with warnings enabled and have an indentation mismatch, you will receive a warning. == +alias+ |