aboutsummaryrefslogtreecommitdiffstats
path: root/lib/csv.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 02:40:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 02:40:02 +0000
commita87d1ae9ed9289d8ed0826d83bc16de3e36bab3f (patch)
tree0ee9c9fb3bbe14e6748f15afce3c4caa9ec0bfda /lib/csv.rb
parent686ca68643973a0888946198e8847bf4558e3163 (diff)
downloadruby-a87d1ae9ed9289d8ed0826d83bc16de3e36bab3f.tar.gz
csv.rb: fix encoding
* lib/csv.rb: encoding must be plased at the first line except for shebang. [fix GH-1116] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/csv.rb')
-rw-r--r--lib/csv.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index a723a44430..ac77af7c5f 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -1,5 +1,5 @@
-# frozen_string_literal: true
# encoding: US-ASCII
+# frozen_string_literal: true
# = csv.rb -- CSV Reading and Writing
#
# Created by James Edward Gray II on 2005-10-31.