Skip to content

Commit 7b2c9c5

Browse files
committed
C++: Add quotes to improve readability.
1 parent 1ef0643 commit 7b2c9c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/src/semmle/code/cpp/commons/unix/Constants.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ int parseOctal(string input) {
2020
)
2121
}
2222

23-
/** Gets the number corresponding to the set-user-ID on execute bit in Unix. */
23+
/** Gets the number corresponding to the "set-user-ID on execute bit" in Unix. */
2424
int s_isuid() { result = parseOctal("04000") }
2525

26-
/** Gets the number corresponding to the set-group-ID on execute bit in Unix. */
26+
/** Gets the number corresponding to the "set-group-ID on execute bit" in Unix. */
2727
int s_isgid() { result = parseOctal("02000") }
2828

2929
/** Gets the number corresponding to the sticky bit in Unix. */

0 commit comments

Comments
 (0)