aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-15 01:37:47 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-15 01:37:47 +0000
commitd9a2b3480ef03b79ea9070de0646d2372491a915 (patch)
treec91bde622faf36fec66321c9631ff5e3b035da88 /doc
parent14ec77d1793767fb00cdf2f945ec7e5d7a1ae8bc (diff)
downloadruby-d9a2b3480ef03b79ea9070de0646d2372491a915.tar.gz
* doc/contributors.rdoc: fix a typo. Patch by @davydovanton
[fix GH-872][ci skip] * doc/syntax/methods.rdoc: ditto. * ext/digest/sha2/sha2.c: ditto. * ext/socket/ipsocket.c: ditto. * ext/tk/*: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/contributors.rdoc2
-rw-r--r--doc/syntax/methods.rdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/contributors.rdoc b/doc/contributors.rdoc
index 96fe887e4e..ced4eb1cd0 100644
--- a/doc/contributors.rdoc
+++ b/doc/contributors.rdoc
@@ -1,6 +1,6 @@
= Contributors to Ruby
-The following list might be imcomplete. Feel free to add your name if your
+The following list might be incomplete. Feel free to add your name if your
patch was accepted into Ruby.
== A
diff --git a/doc/syntax/methods.rdoc b/doc/syntax/methods.rdoc
index debfa76cbf..c8fc584c68 100644
--- a/doc/syntax/methods.rdoc
+++ b/doc/syntax/methods.rdoc
@@ -55,7 +55,7 @@ it indicates that unlike its non-bang equivalent, permanently modifies its
receiver. Almost always, Ruby core library will have a non-bang
counterpart (method name which does NOT end with <code>!</code>) of every bang
method (method name which does end with <code>!</code>) that does not modify
-the receiver. This convention is typically true for ruby core libary but
+the receiver. This convention is typically true for ruby core library but
may or may not hold true for other ruby libraries.
Methods that end with a question mark by convention return boolean. But they