lib/git/escaped_path.rb in git-2.1.0 vs lib/git/escaped_path.rb in git-2.1.1
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
module Git
# Represents an escaped Git path string
#
- # Git commands that output paths (e.g. ls-files, diff), will escape usual
+ # Git commands that output paths (e.g. ls-files, diff), will escape unusual
# characters in the path with backslashes in the same way C escapes control
# characters (e.g. \t for TAB, \n for LF, \\ for backslash) or bytes with values
# larger than 0x80 (e.g. octal \302\265 for "micro" in UTF-8).
#
# @example