Skip to content

Commit 855426b

Browse files
committed
Update section on naming conventions for acronyms
- Fix array name starting with a capital - Add alternative good example
1 parent 344c25d commit 855426b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -2928,11 +2928,16 @@ Other Style Guides
29282928
// ...
29292929
];
29302930

2931+
// also good
2932+
const httpRequests = [
2933+
// ...
2934+
];
2935+
29312936
// best
29322937
import TextMessageContainer from './containers/TextMessageContainer';
29332938

29342939
// best
2935-
const Requests = [
2940+
const requests = [
29362941
// ...
29372942
];
29382943
```

0 commit comments

Comments
 (0)