Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/styleguide.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ arr=("${arr[@]/#/"$prefix"}")

However, this has another problem in bash < 4.3 or when `shopt -s
compat42` is turned on. The inner double quotations are treated
literally so that the `PREFIX` instead of ``"PREFIX"` is prefixed to
literally so that the `PREFIX` instead of `"PREFIX"` is prefixed to
elements. To avoid this situation, the outer double quotations might
be removed, but this has even another problem of the pathname
expansions and `IFS`.
Expand Down