diff --git a/CODINGSTYLE.md b/CODINGSTYLE.md index fa5311dbf94f8dee631a1198ef43e1f8afabf38b..976b93f5dc002025040f54ea4df74b3403f20a1f 100644 --- a/CODINGSTYLE.md +++ b/CODINGSTYLE.md @@ -67,7 +67,7 @@ Put `; do` and `; then` on the same line as the `while`, `for` or `if`. ### Quoting * Always quote string literals (exceptions are assigning `pkgname` and - `pkgver`, more on this below). + `pkgver`, which must not be quoted). * Always quote variables, command substitutions or shell meta characters when used in strings. Prefer `"$var"/foo/bar` over `"$var/foo/bar"`. * Never quote literal integers.