aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-27 12:56:08 +0000
committera_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-27 12:56:08 +0000
commitda666770616728875f9d3b79878c50f8cd0a84fa (patch)
treeb1b1dfb7d86c8e5bdb99ae3726f3c0adbfbd6f05
parent0d72c6655c89a5b743f2e7d3f2727b37e50449b6 (diff)
downloadruby-da666770616728875f9d3b79878c50f8cd0a84fa.tar.gz
* lib/irb/notifier.rb: [Doc] Fix typo
* ext/json/lib/json/common.rb: Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43881 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/json/lib/json/common.rb2
-rw-r--r--lib/irb/notifier.rb2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a825aec25..a10f643634 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Nov 27 21:43:00 2013 Akira Matsuda <ronnie@dio.jp>
+
+ * lib/irb/notifier.rb: [Doc] Fix typo
+ * ext/json/lib/json/common.rb: Ditto.
+
Tue Nov 27 18:04:57 2013 Akira Matsuda <ronnie@dio.jp>
* lib/irb/notifier.rb: Fix typo
diff --git a/ext/json/lib/json/common.rb b/ext/json/lib/json/common.rb
index e24f637f61..8fbaa2baad 100644
--- a/ext/json/lib/json/common.rb
+++ b/ext/json/lib/json/common.rb
@@ -448,7 +448,7 @@ module ::Kernel
nil
end
- # Ouputs _objs_ to STDOUT as JSON strings in a pretty format, with
+ # Outputs _objs_ to STDOUT as JSON strings in a pretty format, with
# indentation and over many lines.
def jj(*objs)
objs.each do |obj|
diff --git a/lib/irb/notifier.rb b/lib/irb/notifier.rb
index 20a5b15738..8207c6c06a 100644
--- a/lib/irb/notifier.rb
+++ b/lib/irb/notifier.rb
@@ -26,7 +26,7 @@ module IRB
#
# The optional +prefix+ will be appended to all objects being inspected
# during output, using the given +output_method+ as the output source. If
- # no +output_method+ is given, StdioOuputMethod will be used, and all
+ # no +output_method+ is given, StdioOutputMethod will be used, and all
# expressions will be sent directly to STDOUT without any additional
# formatting.
def def_notifier(prefix = "", output_method = StdioOutputMethod.new)