Skip to content

Commit df5cd21

Browse files
committed
Minor improvements for README.md.
1 parent 53a0de1 commit df5cd21

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ they can be freely copied and modified to meet your organization's needs.
1111

1212
The guidelines themselves are found at [CppCoreGuidelines](CppCoreGuidelines.md). There is also [a version formatted for browsing] (http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) that is manually integrated and thus slightly older than the version in the master branch.
1313

14-
Many of the guidelines make use of the header only Guideline Support Library. One implementation is available at [GSL: Guideline Support Library](https://github.com/Microsoft/GSL).
14+
Many of the guidelines make use of the header-only Guideline Support Library. One implementation is available at [GSL: Guideline Support Library](https://github.com/Microsoft/GSL).
1515

1616
## Background and scope
1717

1818
The aim of the guidelines is to help people to use modern C++ effectively. By "modern C++" we mean C++11 and C++14 (and soon C++17). In other
1919
words, what would you like your code to look like in 5 years' time, given that you can start now? In 10 years' time?
2020

2121
The guidelines are focused on relatively higher-level issues, such as interfaces, resource management, memory management, and concurrency. Such
22-
rules affect application architecture and library design. Following the rules will lead to code that is statically type safe, has no resource
23-
leaks, and catches many more programming logic errors than is common in code today. And it will run fast - you can afford to do things right.
22+
rules affect application architecture and library design. Following the rules will lead to code that is statically type-safe, has no resource
23+
leaks, and catches many more programming logic errors than is common in code today. And it will run fast -- you can afford to do things right.
2424

2525
We are less concerned with low-level issues, such as naming conventions and indentation style. However, no topic that can help a programmer is
2626
out of bounds.
2727

28-
Our initial set of rules emphasize safety (of various forms) and simplicity. They may very well be too strict. We expect to have to introduce
28+
Our initial set of rules emphasizes safety (of various forms) and simplicity. They may very well be too strict. We expect to have to introduce
2929
more exceptions to better accommodate real-world needs. We also need more rules.
3030

31-
You will find some of the rules contrary to your expectations or even contrary to your experience. If we haven't suggested you change your
31+
You will find some of the rules contrary to your expectations or even contrary to your experience. If we haven't suggested that you change your
3232
coding style in any way, we have failed! Please try to verify or disprove rules! In particular, we'd really like to have some of our rules
3333
backed up with measurements or better examples.
3434

0 commit comments

Comments
 (0)