aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-11 03:58:07 +0000
committera_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-11 03:58:07 +0000
commite1db3605fd8b21aa9b5277114d18bdd21f54c832 (patch)
tree112f1d31887931402cea6d78e63c466c966fdbec
parenta4cbd6412aa8b16893db47ff18243bb4d5371899 (diff)
downloadruby-e1db3605fd8b21aa9b5277114d18bdd21f54c832.tar.gz
* ext/win32ole/sample/olegen.rb: Fix typo
* ext/openssl/ossl_asn1.c: [DOC] Fix typo * lib/webrick/accesslog.rb: ditto * template/yarvarch.ja: ditto s/recieve/receive/ git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/openssl/ossl_asn1.c2
-rw-r--r--ext/win32ole/sample/olegen.rb8
-rw-r--r--lib/webrick/accesslog.rb2
-rw-r--r--template/yarvarch.ja2
4 files changed, 7 insertions, 7 deletions
diff --git a/ext/openssl/ossl_asn1.c b/ext/openssl/ossl_asn1.c
index 4ac66203b9..e3f59bfe1e 100644
--- a/ext/openssl/ossl_asn1.c
+++ b/ext/openssl/ossl_asn1.c
@@ -1810,7 +1810,7 @@ Init_ossl_asn1()
* == OpenSSL::ASN1::ObjectId
*
* While OpenSSL::ASN1::ObjectId.new will allocate a new ObjectId, it is
- * not typically allocated this way, but rather that are recieved from
+ * not typically allocated this way, but rather that are received from
* parsed ASN1 encodings.
*
* === Additional attributes
diff --git a/ext/win32ole/sample/olegen.rb b/ext/win32ole/sample/olegen.rb
index 4ec576ca50..aa0288ddbb 100644
--- a/ext/win32ole/sample/olegen.rb
+++ b/ext/win32ole/sample/olegen.rb
@@ -8,7 +8,7 @@ require 'win32ole'
class WIN32COMGen
def initialize(typelib)
@typelib = typelib
- @reciever = ""
+ @receiver = ""
end
attr_reader :typelib
@@ -87,7 +87,7 @@ class WIN32COMGen
end
def generate_method_body(method, disptype, types=nil)
- " ret = #{@reciever}#{disptype}(#{method.dispid}, [" +
+ " ret = #{@receiver}#{disptype}(#{method.dispid}, [" +
generate_args(method).gsub("=nil", "") +
"], [" +
generate_argtypes(method, types) +
@@ -303,10 +303,10 @@ STR
if klass.ole_type == "Class" &&
klass.guid &&
klass.progid
- @reciever = "@dispatch."
+ @receiver = "@dispatch."
define_class(klass, io)
else
- @reciever = ""
+ @receiver = ""
define_module(klass, io)
end
generate_constants(klass, io)
diff --git a/lib/webrick/accesslog.rb b/lib/webrick/accesslog.rb
index 0a3c380406..4df27efc29 100644
--- a/lib/webrick/accesslog.rb
+++ b/lib/webrick/accesslog.rb
@@ -85,7 +85,7 @@ module WEBrick
# %q:: Request query string
# %r:: First line of the request
# %s:: Request status
- # %t:: Time the request was recieved
+ # %t:: Time the request was received
# %T:: Time taken to process the request
# %u:: Remote user from auth
# %U:: Unparsed URI
diff --git a/template/yarvarch.ja b/template/yarvarch.ja
index bb90f0c0d2..75439d3bd8 100644
--- a/template/yarvarch.ja
+++ b/template/yarvarch.ja
@@ -153,7 +153,7 @@ Lisp の処理系などをかんがえると、わざわざブロックローカ
側に辿れば必ずたどり着くことができるからです(つまり、lfp は必要ない)。
しかし、Ruby ではいくつか状況が違います。まず、メソッドローカルな情報が
-あること、具体的にはブロックとself(callee からみると reciever)です。こ
+あること、具体的にはブロックとself(callee からみると receiver)です。こ
の情報をそれぞれのフレームにもたせるのは無駄です。
また、Ruby2.0 からはブロックローカル変数はなくなります(ブロックローカル