Skip to content

Commit 9b783d3

Browse files
authored
Apply suggestions from code review
1 parent 2c6fc80 commit 9b783d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/modules/compilation-model/headers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ _This section lists important details for each point._
7171
* Usage of standard library code requires inclusion of various header files
7272
* Give examples of various header files and when they may be needed for inclusion
7373
* Include links to reference materials for finding out what headers are used for various feature sets
74-
* When using standard library facilities, can either use `using std::vector; vector<int> v;`, or `std::vector<int> v;`, or `using namespace std; vector<int> v;`, though modern practice strongly discourages invoking `using namespace std;`
74+
* When using standard library facilities, one can either use `using std::vector; vector<int> v;`, or `std::vector<int> v;`, or `using namespace std; vector<int> v;`, though modern practice strongly discourages invoking `using namespace std;`
7575

7676
### Main: Organizing function and class declarations for reuse {#headers-main}
7777

0 commit comments

Comments
 (0)