We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 577fd38 commit 5f7dc4fCopy full SHA for 5f7dc4f
lib/fileutils.rb
@@ -1651,7 +1651,7 @@ def user_mask(target) #:nodoc:
1651
when "a"
1652
mask | 07777
1653
else
1654
- raise ArgumentError, "invalid `who' symbol in file mode: #{chr}"
+ raise ArgumentError, "invalid 'who' symbol in file mode: #{chr}"
1655
end
1656
1657
@@ -1705,7 +1705,7 @@ def symbolic_modes_to_i(mode_sym, path) #:nodoc:
1705
copy_mask = user_mask(chr)
1706
(current_mode & copy_mask) / (copy_mask & 0111) * (user_mask & 0111)
1707
1708
- raise ArgumentError, "invalid `perm' symbol in file mode: #{chr}"
+ raise ArgumentError, "invalid 'perm' symbol in file mode: #{chr}"
1709
1710
1711
0 commit comments