Commit Graph

550 Commits (ad66f6ecda2147300d0f93096da3eeba5fc6da31)

Author SHA1 Message Date
Andreas Scherer 6571ede5e7 Invert single occurrence of closing brace after comma. 10 years ago
Andreas Scherer 41f1c30d1c Add missing closing brace. 10 years ago
Andreas Scherer 8221bd9016 Fix missing backticks for std-code. 10 years ago
Herb Sutter a076dede74 Added FAQ.10 for Markdown 10 years ago
Andreas Scherer daf2595009 Fix typos and add internal links.
Two hours of semi-automatic digestion of the C++ Guidelines result
in a host of small changes. Eight intermediate commits make up this
squashed monster.

First I ran 'aspell -l en_US -c CppCoreGuidelines.md' and interactively
corrected several trivial typos. Then I spent a short hour inside Vim to
improve the spacing by looking for '[a-z]  [a-z]' plus the odd typo.

Only after reading the 'how to contribute' section, I started to create
smaller patches. Continuing by reading the .md-file on formatted form, I
added a markdown link to the associated 'LICENSE' in the introduction.
Then I scanned section 'SF' and fixed typos. Next I spotted a single
problem with a French accent. After adding another internal link from
the FAQ section to the Abstract, I finished the day by reading and
correcting section CPL.
10 years ago
Gabriel Dos Reis 9653bdb38f Merge pull request #297 from dhood/copyedit
Various copy editing changes up to I.6
10 years ago
Deanna Hood 6dbdc9d33e Copy edit 10 years ago
Gabriel Dos Reis 2bbc1c249e Merge pull request #333 from ulilaube/fixmarkup
Fix markup
10 years ago
uli c3877a41af Convert LaTeX-quotes to ordinary ASCII quotes.
Added missing backticks.
Removed extra }.
Consistent backticks for const added.
Typo fixed.
Missing equality signs in HTML-markup added.
10 years ago
Andrew Pardoe abed1970b5 Update tag in I4 based on Issue #329 10 years ago
Gabriel Dos Reis 57a5446625 Merge pull request #326 from ralphtandetzky/patch-1
Fixed grammatical error.
10 years ago
Ralph Tandetzky 81635bad4e Fixed grammatical error. 10 years ago
Thibault Kruse 5d1d990cd9 minor style fixes 10 years ago
xtofl be59e3c73e [fix] markdown backtick mismatch 10 years ago
Gabriel Dos Reis b369145220 Merge pull request #319 from tkruse/pr/291
Added example to NL 9
10 years ago
richelbilderbeek a86ae876a2 Added example to NL 9 10 years ago
Eliyahu Ravuna a7459b4164 Typo fixed in C.165 10 years ago
Bjarne Stroustrup 592d67ea12 using std:;swap();
C.165 added.
Also: glossary extended.

Please review both.
10 years ago
Bjarne Stroustrup 70a19387fe add reference to RTTI 10 years ago
Bjarne Stroustrup 72821c0f88 more minor issues
static_cast/dynamic_cast- not really satisfactory
10 years ago
Bjarne Stroustrup 1b79ede5c5 minor changes to do with functions
f(void)
void main()
final
10 years ago
Gabriel Dos Reis 552855c17a Merge pull request #296 from kpx1894/kpx1894-patch-1
fixes to code examples in C.61
10 years ago
Gabriel Dos Reis 96dfc9f96e Merge pull request #306 from mitro42/fix_discussion_dtorneverfail
Fixed code indentation, numbering and typo in Discussion: Destructors…
10 years ago
Gabriel Dos Reis 72630e3d60 Merge pull request #308 from kjpgit/master
s/constructor/destructor
10 years ago
kjpgit 537e15d0af C40: correct enforcement wording 10 years ago
mitro42 f909c0fc02 Fixed typos 10 years ago
Bjarne Stroustrup 91109eb8ab A few clarifications
especially to do with initializations
the beginnings of a glossary
10 years ago
mitro42 c827bddcd5 Fixed code indentation, numbering and typo in Discussion: Destructors, deallocation, and swap must never fail 10 years ago
kpx1894 0902d5d137 fixes to code examples in C.61
Two argument comparison operator in both code examples for "C.61: A copy operation should copy" has a body of single argument member operator. This fix keeps comparison operator outside class, but corrects its body.
10 years ago
Thibault Kruse 8a4550c8f9 Minor style issues 10 years ago
Thibault Kruse ad2717f7fa Unnecessary ';' 10 years ago
Thibault Kruse 2a907f088d Code indent 4 spaces instead of tabs 10 years ago
Thibault Kruse 31fec52f4f Use Only alphanumerics for anchor-ids 10 years ago
Thomas Köppe 2f6c3d5c2b [GSL.view] Simplify explanation of lack of "null references". 10 years ago
Thomas Köppe 7143050ef6 [GSL.view] Make wording around null pointers and null references more precise. 10 years ago
Thibault Kruse a519dfc560 consistent code formatting whitespaces 10 years ago
Thibault Kruse 4ba88ae0ea consistently opening braces for multiline function def on new line 10 years ago
Gabriel Dos Reis cb3bf9d989 Merge pull request #275 from tkruse/fix-mdstyle16
fix minor style issues
10 years ago
Gabriel Dos Reis 04d69d8268 Merge pull request #278 from tkruse/fix-mdstyle19
Text Style: Unnecessary blank, puntuation, linebreak after comma
10 years ago
Gabriel Dos Reis d21b1f1b65 Merge pull request #277 from tkruse/fix-mdstyle18
consistently no whitespace padding inside round parentheses
10 years ago
Thibault Kruse fcfa485671 Text Style: Unnecessary blank, puntuation, linebreak after comma 10 years ago
Thibault Kruse 7dca435e71 consistently no whitespace padding inside round parentheses 10 years ago
Thibault Kruse 806e40b214 missing indent 10 years ago
Thibault Kruse 572f9c6cbf ??? for placeholder 10 years ago
Thibault Kruse b8254dcf96 fix mix of tabs and spaces 10 years ago
Eliyahu Ravuna 9c129ec89c Feedback of Jared in #283 incorporated into I.4 10 years ago
Gabriel Dos Reis ca107da14c Merge pull request #279 from fkaelberer/patch-2
Fix ES.103 example
10 years ago
Gabriel Dos Reis 620eda5c3c Merge pull request #281 from fkaelberer/patch-3
Fix minor typos and spacing
10 years ago
Eliyahu Ravuna 78581f2ae6 std::chrono::duration example for I.4
Make interfaces precisely and strongly typed.
10 years ago
Felix Kälberer 56c319d46a Fix minor typos and spacing 10 years ago
Felix Kälberer 1de6e77b15 Fix ES.103 example
```
    int area(int h, int w) { return h*w; }
    auto a = area(10'000'000 * 100'000'000);	// bad
```
The `*` in the second line should be a comma
10 years ago
Thibault Kruse d458c57d08 fix duplicate anchor IDs 10 years ago
Thibault Kruse b5d8ef8be7 Fix missing lines/ bad indent 10 years ago
Eliyahu Ravuna 8050963a06 Access memory predictably - Revised according to the feedback in #256
Capitalization revised according to the feedback in #256.
(Access memory predictably)
10 years ago
Gabriel Dos Reis 57d06f2138 Merge pull request #261 from Eliyahu-Ravuna/patch-8
As agreed in #255, commits squashed (ES.100)
10 years ago
Eliyahu Ravuna c4b3b8b0c6 As agreed in #255, commits squashed (ES.100)
As agreed in #255, two commits squashed.
(ES.100: Don't mix signed and unsigned arithmetic)
10 years ago
Eliyahu Ravuna ad3d1dc631 Change agreed in #253
As agreed in #253, three commits squashed into one.
(Suggested 'return containers by value' example + Title made more concise)
10 years ago
Gabriel Dos Reis 4d1c32f298 Merge pull request #219 from tkruse/mdast-idempot
Achieve mdast idempotency (4-space markdown indent, single empty lines)
10 years ago
Gabriel Dos Reis 149a681188 Fix forward links in NL
Fix #241.
10 years ago
Thibault Kruse d844553169 Code blocks consistently use 4 spaces markdown indent (via mdast)
Exception is 8space indent for code inside bullet lists (also handled by mdast)
Changes code fences as well to 4-space indent.

This does not affect C++ indent within code blocks (mdast does not touch that either way).
10 years ago
Thibault Kruse e291947e25 fix consecutive blank lines (mdast output). 10 years ago
Gabriel Dos Reis 00d542f777 Fix misplaced `override` specifier
Fixed #248.
10 years ago
Gabriel Dos Reis c4088e053b Merge pull request #237 from david-mitchell/patch-1
Fix grammar.
10 years ago
Gabriel Dos Reis bdc863dcda Merge pull request #258 from axelstudios/master
Fixed minor typos
10 years ago
Gabriel Dos Reis 2536585830 Merge pull request #257 from RicoAntonioFelix/master
Added capture in lambda expression...
10 years ago
Gabriel Dos Reis a615bdeb19 Merge pull request #254 from Eliyahu-Ravuna/patch-3
Typo fixed in 'Use templates to express containers'
10 years ago
Alex Swindler 23b1257817 Fixed minor typos 10 years ago
RicoAntonioFelix af18193511 Added capture in lambda expression... 10 years ago
drusk 80f93640ce Fixed minor typo in section P.2. 10 years ago
Eliyahu Ravuna 6dbcabc974 Typo fixed in 'Use templates to express containers' 10 years ago
Gabriel Dos Reis 1ab6344b44 Merge pull request #218 from Jiwan/Jiwan-change-nullptr-passing-exemple
Fixed minor error in I.12: Declare a pointer that must not be null as not_nul
10 years ago
Gabriel Dos Reis 6746027209 Merge pull request #242 from tkruse/fix-minisections
Replace **strong** fake headers with real markdown headers
10 years ago
spacewander 9d4a7627c7 fix C.over index error 10 years ago
Thibault Kruse e4ea6c5374 Replace **strong** fake headers with real markdown headers carrying section semantics 10 years ago
Thibault Kruse d5295a8d9d Fix broken and fragile rendering of Bibliography 10 years ago
Thibault Kruse 4b1f9ad99c fix missing closing parens (in test()) 10 years ago
David Mitchell 3d3d43d60f Fix grammar. 10 years ago
David Mitchell d8f54449d6 Fix typo. 10 years ago
Jiwan e41b65cca1 Fixed a minor error in an example in I.12. 10 years ago
Emmanuel Briot cc45432b01 Minor typo fixes 10 years ago
Gabriel Dos Reis 812fb8f314 Merge pull request #221 from david-mitchell/patch-9
Fix typo.
10 years ago
Gabriel Dos Reis b7940d2ef4 Merge pull request #220 from david-mitchell/patch-8
Fix typo.
10 years ago
Gabriel Dos Reis a39f61bc5c Merge pull request #223 from delta-nry/patch-1
Correct and clarify FAQ.59 and FAQ.60
10 years ago
Gabriel Dos Reis cedd9c6481 Merge pull request #209 from jlaire/typos-and-other-fixes
Typos and other fixes
10 years ago
Gabriel Dos Reis d3d0426b39 Merge pull request #228 from david-mitchell/patch-10
Fix verb agreement.
10 years ago
Gabriel Dos Reis b8c9ad47ac Merge pull request #230 from david-mitchell/patch-12
Fix awkward wording.
10 years ago
David Mitchell 7103785b20 Fix awkward wording. 10 years ago
David Mitchell 7d82c95191 Add missing punctuation. 10 years ago
David Mitchell 5560508b28 Fix verb agreement. 10 years ago
Johannes Laire 3f160967b6 More small fixes 10 years ago
Johannes Laire 74b5debe8c Add an example 10 years ago
Johannes Laire 9a976c8a85 Fix bugs in examples 10 years ago
Johannes Laire d01a414fed Typo fixes 10 years ago
Johannes Laire 7e6734ade4 Small fixes to markdown formatting 10 years ago
Nathan Yee 4befe68ea6 Correct and clarify FAQ.59 and FAQ.60 10 years ago
David Mitchell e1810cf164 Fix typo. 10 years ago
David Mitchell 632e4ef544 Fix typo. 10 years ago
Herb Sutter 8a1d622671 Added dyn_array vs. dynarray to FAQ 10 years ago
Brian Rodriguez 7112881429 T.40 typo: `find` to `find_if`
`std::find` accepts a value, not a function object.  `std::find_if` was the intended function.
10 years ago
Gabriel Dos Reis 1ad595e1a6 Merge pull request #212 from tkruse/fix-mdstyle12
Fix code snippets that do not compile, or mark them with ???
10 years ago
Herb Sutter 474d0d3e6b Elaborated on some of the FAQs 10 years ago
Thibault Kruse 314cff005c Fix code snippets that do not compile, or mark them with at least one ??? 10 years ago
Herb Sutter 2528acd017 Added GSL type-specific FAQs 10 years ago
Gabriel Dos Reis 8a1ff8bb3c Merge pull request #196 from david-mitchell/patch-4
Fix typo.
10 years ago
Gabriel Dos Reis 16a332330c Merge pull request #197 from david-mitchell/patch-5
Improve wording and structure of paragraph.
10 years ago
Gabriel Dos Reis 7fa4b587b1 Merge pull request #201 from jwakely/patch-2
Change gsl:: qualification to lowercase
10 years ago
Gabriel Dos Reis 48c3c3b549 Merge pull request #211 from tkruse/fix-mdstyle11
fix bad mix of tabs and spaces
10 years ago
Thibault Kruse 4b0c6702bb fix bad mix of tabs and spaces 10 years ago
Thibault Kruse 5a449f4bd8 bad char instead of minus 10 years ago
Thibault Kruse 33f832e090 typo 10 years ago
Thibault Kruse fca180e978 Fix code that does not compile 10 years ago
Thibault Kruse a4c8444032 Minor fix: remove blank inside html tags 10 years ago
Gabriel Dos Reis 93736f8e41 Merge pull request #137 from trebconnell/final_action
Change casing of Final_action to final_action
10 years ago
Gabriel Dos Reis 1a3b28260f Merge pull request #207 from tryfinally/patch-2
typo fixes: constxp -> constexpr, spaces
10 years ago
Gabriel Dos Reis 5302819df0 Merge pull request #188 from tkruse/fix-mdstyle7
Some style issues
10 years ago
rkawulak 7e4a683c96 Lots of minor fixes (typos, code errors, formatting, etc.) 10 years ago
Muhammad Zahalqa 45ff180fde typo fixes
ES.45
10 years ago
Thibault Kruse 95ed869751 fix: code within bullets must be indented 8 spaces
See http://meta.stackexchange.com/questions/3792/how-to-nest-code-within-a-list-using-markdown
10 years ago
Thibault Kruse 946ffee133 fix bad code indentation 10 years ago
Thibault Kruse 56db9e88a4 minor markdown style fixes 10 years ago
Thibault Kruse 5ac1676b10 Remove trailing whitespace, as it can be unintentionally interpreted as meaningful after bullet lists 10 years ago
Gabriel Dos Reis f34bc55c73 Merge pull request #194 from tkruse/fix-mdstyle8
Fix markdwn issues that confuse mdast markdown linter
10 years ago
Gabriel Dos Reis 7c4b526325 Merge pull request #199 from david-mitchell/patch-7
Fix typo.
10 years ago
Johannes Laire 4bea8b4573 Fix typo 10 years ago
Thibault Kruse 777f7bc5fb fix code blocks indented with tab (4 spaces instead) 10 years ago
Thibault Kruse 8adf569a57 Fix style issues that confuse the mdast linter (and need to be fixed anyways) 10 years ago
Treb Connell 462590319a Merge branch 'master' of https://github.com/isocpp/CppCoreGuidelines into final_action
Conflicts:
	CppCoreGuidelines.md
10 years ago
Treb Connell 04637619de Change 'finally object' to 'final_action object' 10 years ago
Herb Sutter 4b6fb49772 Added a FAQ section 10 years ago
Jonathan Wakely 53dc924649 Change gsl:: qualification to lowercase 10 years ago
David Mitchell d7f7ca5ab4 Fix typo. 10 years ago
David Mitchell 46e867e9c6 Improve wording and structure of paragraph.
To be grammatically correct, the phrase "Confusion about what meaning a T* is the source" should have had a doubled "is", which would have been awkward, so the sentence has been reworded.

The second and third sentences were inverted. Prior to the inversion, the sentence starting with "For example" initially appeared to be expanding on the debuggability of not_null, rather than providing an example of how using separate names improves code quality.
10 years ago
David Mitchell aad584c8b1 Fix typo. 10 years ago
Thibault Kruse a7dc7d1fa6 Put header-anchors in header. For Compliance, correctness, consistency
The anchor would else point to the end of the previous section
Also this causes issues with tools ensuring a blank line before a header.
10 years ago
Thibault Kruse 35161a3d04 Consistent Space between anchor and header 10 years ago
Thibault Kruse 7b422eac3f fix header inside anchor 10 years ago
Thibault Kruse 12db7f8757 Fix html anchors for links 10 years ago
Thibault Kruse 78b66f4eae Obsolete question marks 10 years ago
Thibault Kruse 452f587a4d bad indentation, mark missing example with ??? 10 years ago
Thibault Kruse c2266bd8e4 fix bad indentation, causes bullet list to become code block 10 years ago
Thibault Kruse 411a5749e4 typos 10 years ago
Thibault Kruse 104d2327d5 fix markdown style 10 years ago
Gabriel Dos Reis 4f76723995 Merge pull request #155 from tkruse/fix-mdstyle5
Fix typos and minor style problems
10 years ago
Thibault Kruse a68ace40df use markdown link instead of html link 10 years ago
Thibault Kruse 7c0d7830e2 typos
Conflicts:
	CppCoreGuidelines.md
10 years ago
Thibault Kruse 90b62edaf0 Ambiguous indentation within unordered list 10 years ago
Thibault Kruse 0855efaa1d fix mixup of indentation strategies inside same codeblocks 10 years ago
Gabriel Dos Reis 1e49b7b7a3 Merge pull request #174 from tkruse/fix-mdstyle3
Fix minor style issues around bullet lists and Enforcement sections
10 years ago
Gabriel Dos Reis e4b961394c Merge pull request #160 from certik/number_fix
Fix numbers in sections to be consistent with TOC
10 years ago
Thibault Kruse c4f09f2d19 Fix / Consistent Enforcement sections 10 years ago
Thibault Kruse 7f20741f38 Fix missing / bad indent or style within bullet list 10 years ago
Thibault Kruse d2ea0766b0 make headlines within list 1st level list (else they are prone to be part of earlier bullet 10 years ago
Gabriel Dos Reis 07ae55a037 Merge pull request #164 from tkruse/fix-mdstyle6
Fix mdstyle6
10 years ago
Gabriel Dos Reis 521200397e Merge pull request #165 from tkruse/links-without-spaces
Fix: Consistently name anchors for links without spaces
10 years ago
Gabriel Dos Reis 12ee68f8d2 Merge pull request #171 from RicoAntonioFelix/master
Corrected typographical errors...
10 years ago
Thibault Kruse b2a4132cf2 Fix / Consistent Enforcement sections 10 years ago
Thibault Kruse c83bdc5495 fix double hash and missing Discussion 10 years ago
Thibault Kruse 8b0460d899 remove bad chars 10 years ago
Thibault Kruse cc492c1e56 add missing ??? 10 years ago
Thibault Kruse cb4ee8e286 Fix: Consistently name anchors for links without spaces 10 years ago
Gabriel Dos Reis f2c4d1459c Merge pull request #162 from tkruse/fix-biblio
fix citations/references/bibliography.
10 years ago
Gabriel Dos Reis ca57720e30 Merge pull request #161 from tkruse/fix-comma
fix blank after comma
10 years ago
Gabriel Dos Reis 3c3b204b75 Merge pull request #163 from tkruse/fix-anchors
Markdown fix anchors and move Header text outside anchor
10 years ago
Gabriel Dos Reis 1b944fade2 Merge pull request #166 from tryfinally/patch-1
typo fix: ES.5 + ES.6 retension -> retention
10 years ago
Gabriel Dos Reis 4f7b740d94 Merge pull request #168 from tkruse/fix-backtick
add missing backticks
10 years ago
Mikhail Maltsev 4bc790c522 Indent some code examples for correct rendering 10 years ago
RicoAntonioFelix a2473a5c69 Corrected typographical error... 10 years ago
RicoAntonioFelix 1652fb6d56 Corrected typographical error... 10 years ago
Thibault Kruse 46e313c256 add missing backticks (breaks formatting else because of underscore in std::memory_order) 10 years ago
Muhammad Zahalqa c9b7b8aa06 typo fix: ES.5 + ES.6 retension -> retention
renesion usually applied to magnetic tapes.
10 years ago
Thibault Kruse 758f3101fc Markdown fix anchors: Move Header text outside anchor, else header becomes an ugly noop link (also for Consistency) 10 years ago
Thibault Kruse 18bd7f3c92 fix citations/references/bibliography. 10 years ago
Thibault Kruse e558cf9919 fix blank after comma 10 years ago
Ondřej Čertík 88e881c197 Fix numbers in sections to be consistent with TOC
The sections R.24, R.30 - R.37 had incorrect numbers in the text. Also R.30 was
after R.31. This is now fixed.
10 years ago
Andrew Pardoe 2a50e98a19 Addressed issue #123 10 years ago
Andrew Pardoe bb95e9839d Addressing issue #51 10 years ago
Piotr Padlewski b8e9216bca Update CppCoreGuidelines.md
Destructors are always marked as noexcept (unless noexcept(false)) using this word here is ambigious.
10 years ago
Gabriel Dos Reis 572119b71d Merge pull request #157 from prazek/patch-1
Update CppCoreGuidelines.md
10 years ago
Egor Pugin 9222fd1b1f Fix typo. 10 years ago
Egor Pugin 240bc0ea0c Private constructor does not allow to create derived classes. 10 years ago
Gabriel Dos Reis bf8f1b8f49 Merge pull request #139 from trebconnell/fixtypos
Fix typos
10 years ago
Gabriel Dos Reis 9e25b93a18 Merge pull request #148 from RicoAntonioFelix/master
Minor fixes to clean up the document...
10 years ago
Piotr Padlewski 4ad6d50f86 Update CppCoreGuidelines.md 10 years ago
Evan Teran e508837f42 Correcting minor typo 10 years ago
RicoAntonioFelix c7a820e219 Corrected spelling error... 10 years ago
RicoAntonioFelix eef63f5188 Capitalize for consistency... 10 years ago
RicoAntonioFelix d43d484417 Remove extra backtick... 10 years ago
Andrew Pardoe c813800c1a Addressing issue #68 10 years ago
Treb Connell 8eb26fc8dd Fix typos. I don't think these are fixed by other PR's 10 years ago
Treb Connell 43051d1fc8 fix a case of Finally 10 years ago
Treb Connell dffb544a2c change casing of 'Final_action' to 'final_action' 10 years ago
Andrew Pardoe 3926ebbf72 Merge branch 'master' of https://github.com/isocpp/CppCoreGuidelines 10 years ago
Andrew Pardoe 1d9be95ee0 Added alternative fix for PR #132 10 years ago
Andrew Pardoe 6127598008 Merge pull request #121 from jfultz/patch-1
Fix usage of non_null in zstring clause.
10 years ago
Andrew Pardoe 033059103d Add fix from issue #122 10 years ago
Gabriel Dos Reis 0599a69d4a Merge pull request #127 from frutiger/fixes-broken-links
CppCoreGuidelines.md: fixes broken links.
10 years ago
Victor Thompson cfb673ef6c Fix a few minor spelling mistakes. 10 years ago
Masud Rahman bd026d26a7 CppCoreGuidelines.md: fixes broken links.
Some links had trailing quote marks, and the 'BDE' link was broken because the
location had changed.
10 years ago
Andrew Pardoe de505d38f9 es.74 "loop induction variable" -> "loop variable" 10 years ago
Andrew Pardoe fa4150b633 Added Discussion for ES.74 10 years ago
John Fultz 07cbf4544e Fix usage of non_null in zstring clause.
Also, fix a typo.
10 years ago
Andrew Pardoe e6e87ef919 Merge branch 'master' of https://github.com/isocpp/CppCoreGuidelines 10 years ago
Gabriel Dos Reis fbeeb302c9 Merge pull request #113 from ga2arch/master
Fix typo rule C.42
10 years ago
Andrew Pardoe 414924c62d Merge branch 'es74' of https://github.com/dacap/CppCoreGuidelines into dacap-es74 10 years ago
Gabriel Dos Reis 21f60632a9 Merge pull request #115 from blakehawkins/fix_invalid_links
fix invalid local anchor links
10 years ago
Gabriel Dos Reis f478991194 Merge pull request #114 from jneidlinger/typo/f21
[Typo] Fix typo in function argument passing rule 21
10 years ago
Gabriel Dos Reis cfe4349320 Merge pull request #112 from jneidlinger/typo/f5
[Typo] Fix typo in function definition rule 5
10 years ago
Andrew Pardoe 137906b32e Merge pull request #110 from dacap/fix-es26-example
Fix example in ES.26 section
10 years ago
Gabriel Dos Reis 868145943c Merge pull request #119 from niun/patch-1
Fix: unequal parantheses in example
10 years ago
Andrew Pardoe 9c5637fd24 Merge pull request #107 from fkaelberer/patch-1
Fix typos in I.1
10 years ago
Andrew Pardoe cdf12055e5 Merge pull request #105 from david-mitchell/patch-3
Fix grammar in I.13
10 years ago
Andrew Pardoe f5c3eecc00 Merge pull request #104 from david-mitchell/patch-1
Fix typo.
10 years ago
Andrew Pardoe 88716fd1c6 Merge pull request #102 from clausjensbymadsen/master
Fix typo in E.17
10 years ago
Andrew Pardoe 460e6fe986 Merge pull request #100 from fabiogaluppo/patch-1
Update CppCoreGuidelines.md
10 years ago
Andrew Pardoe 8b8e0a8e34 Merge pull request #99 from fabiogaluppo/patch-2
Update CppCoreGuidelines.md
10 years ago
Gabriel Dos Reis 40f8e6040d Merge pull request #120 from krismeld/master
fix quote marks
10 years ago
Andrew Pardoe c61b997305 Fixed comments after pulling PR #85 10 years ago
Andrew Pardoe 11b32170c1 Merge pull request #85 from AmeenAli/temp
update at  ES.72 rule
10 years ago
krismeld ee80491fc3 fix quote marks 10 years ago
Andrew Pardoe 8ebb29c249 Merged commit for PR #86 and fixed formatting 10 years ago
Andrew Pardoe 1cfa58e298 Merge branch 'temp' of https://github.com/AmeenAli/CppCoreGuidelines into AmeenAli-temp 10 years ago
Andrew Pardoe 95a823cee5 Merge branch of k-satoda-fix-obvious-link-errors 10 years ago
Andrew Pardoe dde3cc5c20 Merge pull request #78 from phamd/master
Fix example in SF.4
10 years ago
niun 4278cd5c92 fix parantheses in example
() => {} in initializer list
10 years ago
niun d2b5249aef Fix: unequal parantheses in example 10 years ago
Blake Hawkins 4beff8a602 fix invalid local anchor links
Many local named anchors had slightly incorrect
addresses.  This fixes a few of them.
10 years ago
Jordan Neidlinger b370731cc9 [Typo] Fix typo in function argument passing rule 21 10 years ago
Gabriele Carrettoni 0776c58847 Fix typo rule C.42
runrime -> runtime
10 years ago
Jordan Neidlinger fd3d7083b0 [Typo] Fix typo in function definition rule 5 10 years ago
David Capello e9f95eb4d6 Complete ES.74 section 10 years ago
David Capello 2238007823 Fix example in ES.26 section 10 years ago
Felix Kälberer 031e7f5300 Fix typos
1. thorough --> through
2. Add missing `)`
3. Fix "a a move assignment" (#90)
10 years ago
David Mitchell 11d28dfeff Fix grammar. 10 years ago
David Mitchell 9c9a3b576b Fix typo. 10 years ago
Claus Jensby Madsen 1d324efc7d Fix typo in E.17 10 years ago
Fabio Galuppo 5944e37e44 Update CppCoreGuidelines.md
Typo on function in F.21
10 years ago
Fabio Galuppo c4f87d19a9 Update CppCoreGuidelines.md
Typo in example F.20
10 years ago
Gabriel Dos Reis 058e1bfb41 Merge pull request #98 from octoploid/syntax-fix
Fix syntax error in Rc-in-class-initializer
10 years ago
Gabriel Dos Reis 257aa9d6b7 Merge pull request #81 from justanotheranonymoususer/patch-1
Update CppCoreGuidelines.md
10 years ago
Gabriel Dos Reis 15e186941c Merge pull request #79 from rfernandes/patch-1
Fix typo (Poco Project)
10 years ago
Gabriel Dos Reis 5d81c03e56 Merge pull request #87 from LocalToasty/LocalToasty-patch-typo-1
Local toasty patch typo 1
10 years ago
Gabriel Dos Reis 3af2b93263 The name of the namespace of the support library
Fixes #91
10 years ago
Gabriel Dos Reis 8dbdd1504b Merge pull request #93 from burner/patch-1
read_and_print comment typo fix
10 years ago
Gabriel Dos Reis 029016fa39 Merge pull request #94 from jullej/master
Fixed typos in chapter C.127
10 years ago
Gabriel Dos Reis f1981f9e99 Fix obscure precondition expression 10 years ago
Robert Schadek a4dd4bd121 read_and_print comment typo fix
read and print and int -> read and print an int
10 years ago
jullej 5a4e719f86 Update CppCoreGuidelines.md
Fixed typos.
10 years ago
Markus Trippelsdorf cc747323ee Fix syntax error in Rc-in-class-initializer 10 years ago
Egor Pugin 26ad1aa7f9 Domain of sqrt() is nonnegative numbers, not positive. 10 years ago
Marko van Treeck 8f47862f29 Fixed typo. 10 years ago