diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-01-04 05:47:52 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-01-04 05:47:52 +0000 |
commit | aa5ff4a43a5b91135ac723126478215f9ab1966a (patch) | |
tree | 0b5926041540c26c5abe3135722f2d305580c1bc | |
parent | 2c1aa7882045145807120746f600037ff37d164b (diff) |
lib/cmath.rb: Specify frozen_string_literal: true.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/cmath.rb | 2 | ||||
-rw-r--r-- | test/test_cmath.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/cmath.rb b/lib/cmath.rb index 41ab06e77c..4f327fd188 100644 --- a/lib/cmath.rb +++ b/lib/cmath.rb @@ -1,4 +1,4 @@ -# frozen_string_literal: false +# frozen_string_literal: true ## # = Trigonometric and transcendental functions for complex numbers. # diff --git a/test/test_cmath.rb b/test/test_cmath.rb index 2752ce782c..f0d8718315 100644 --- a/test/test_cmath.rb +++ b/test/test_cmath.rb @@ -1,4 +1,4 @@ -# frozen_string_literal: false +# frozen_string_literal: true require 'test/unit' require 'cmath' |