summaryrefslogtreecommitdiff
path: root/lib/tsort.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-17 13:44:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-17 13:44:47 +0000
commitb0c19be2849d4957d4b6b230004c9ce351ad8545 (patch)
treef5bebd5cbd02b9d81f0f043945f3dc7f479f804c /lib/tsort.rb
parent6909b824ea4cec27153aa671af114ac2a1c935aa (diff)
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/tsort.rb')
-rw-r--r--lib/tsort.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tsort.rb b/lib/tsort.rb
index cbff72b124..13718dd791 100644
--- a/lib/tsort.rb
+++ b/lib/tsort.rb
@@ -267,7 +267,7 @@ module TSort
# end
#
# graph = G.new({1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]})
- # graph.each_strongly_connected_component_from(2) {|scc| p scc }
+ # graph.each_strongly_connected_component_from(2) {|scc| p scc }
# #=> [4]
# # [2]
#