Fix two extremely minor typos.

Joshua Lund
2018-05-09 17:11:05 -06:00
parent 9d4f147dda
commit 5451233d83

@@ -5,7 +5,7 @@
## Field Naming Conventions
1. Please do **not** use "hungarian" notation (instance variable names preceded by an 'm', static variable names preceded by an 's' and so on).
1. Please do **not** use "Hungarian" notation (instance variable names preceded by an 'm', static variable names preceded by an 's' and so on).
1. Start variable names with a lowercase letter, and use camelCase rather than under_scores.
1. Constants (public/private static final) are ALL_CAPS_WITH_UNDERSCORES.
@@ -80,7 +80,7 @@ The ordering of import statements is:
1. Imports from third parties (com, junit, net, org)
1. java and javax
Within each grouping, the imports should be sorted alphabetically, with capital letters before lower case letters (eg. Z before a). There should be a blank line between each major grouping.
Within each grouping, the imports should be sorted alphabetically, with capital letters before lower case letters (e.g. Z before a). There should be a blank line between each major grouping.
## Use Annotations