aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tsort.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-14 08:46:11 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-14 08:46:11 +0000
commitf61de46ac26e564ce5a9fe762accd1a059abfdde (patch)
tree56f1ccdecfcdc118826916d6f79e338b03ccabde /lib/tsort.rb
parent966dfbe75bdf366cda38c493833dcc3d7c23d0e7 (diff)
downloadruby-f61de46ac26e564ce5a9fe762accd1a059abfdde.tar.gz
* lib/tsort.rb: Specify frozen_string_literal: true.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52572 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/tsort.rb')
-rw-r--r--lib/tsort.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tsort.rb b/lib/tsort.rb
index c40f9c41b2..2760b7d57f 100644
--- a/lib/tsort.rb
+++ b/lib/tsort.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
#--
# tsort.rb - provides a module for topological sorting and strongly connected components.
#++