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
commit4c0158ac597bcaeb44ceb8e7ad0ea3b7ac4bcc62 (patch)
tree56f1ccdecfcdc118826916d6f79e338b03ccabde /lib/tsort.rb
parent2f7ac37beb83cf844882658c16e7f2352a6add92 (diff)
downloadruby-4c0158ac597bcaeb44ceb8e7ad0ea3b7ac4bcc62.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.
#++