Skip to content

Commit 779a464

Browse files
authored
Update ql-style-guide.md to not mention abbreviation
This rule is only really intended for acronyms, and not abbreviations in general (like `Stmt` instead of `Statement`).
1 parent 1251144 commit 779a464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/ql-style-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ private predicate foo(Expr e, Expr p) {
173173
1. Use [camelCase](https://en.wikipedia.org/wiki/Camel_case) for:
174174
- Predicate names
175175
- Variable names
176-
1. Abbreviations and acronyms *should* use normal PascalCase/camelCase (as an exception, if there are only two letters then using all uppercase letters is acceptable).
176+
1. Acronyms *should* use normal PascalCase/camelCase (as an exception, if there are only two letters then using all uppercase letters is acceptable).
177177
1. Newtype predicate names *should* begin with `T`.
178178
1. Predicates that have a result *should* be named `get...`
179179
1. Predicates that can return multiple results *should* be named `getA...` or `getAn...`

0 commit comments

Comments
 (0)