-
Notifications
You must be signed in to change notification settings - Fork 6
Writing style guidance
Laura Cowen edited this page Dec 20, 2017
·
4 revisions
(Work in progress - needs nicer formatting too) For each piece of guidance, give:
-
A statement of the guidance.
-
The reason(s) why (so that authors can learn and use their judgement about it).
-
One or two examples from the published guides of how to do it right.
-
One or two examples of how not to do it.
Use the present tense almost all the time. Only use the future tense when something is literally in the future (describing the functioning of some code when it’s compiled doesn’t count as future).
Example:
-
Yes: The test class uses the properties to get the application details
-
No: The test class will use the properties to get the application details
-
Yes: You will learn how to build and test a simple REST service.