Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cd0d25a

Browse files
authored
Merge pull request #21 from ruby/expand-tabs
Expand tabs
2 parents 1553623 + cebb406 commit cd0d25a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.git-blame-ignore-revs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This is a file used by GitHub to ignore the following commits on `git blame`.
2+
#
3+
# You can also do the same thing in your local repository with:
4+
# $ git config --local blame.ignoreRevsFile .git-blame-ignore-revs
5+
6+
# Expand tabs
7+
93e8aaadc7c7945895b1b0b6d9909134409517ff

ext/pathname/pathname.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ path_entries(VALUE self)
12261226
ary = rb_funcall(rb_cDir, id_entries, 1, str);
12271227
ary = rb_convert_type(ary, T_ARRAY, "Array", "to_ary");
12281228
for (i = 0; i < RARRAY_LEN(ary); i++) {
1229-
VALUE elt = RARRAY_AREF(ary, i);
1229+
VALUE elt = RARRAY_AREF(ary, i);
12301230
elt = rb_class_new_instance(1, &elt, klass);
12311231
rb_ary_store(ary, i, elt);
12321232
}

0 commit comments

Comments
 (0)