Skip to content

Commit

Permalink
doc: prepare miscellaneous docs for new markdown lint rules
Browse files Browse the repository at this point in the history
Prepare the final few documents that haven't been updated to always use
`[]` with reference links and to escape `[` and `]` for things that
aren't links in markdown files.

PR-URL: #29963
Reviewed-By: Masashi Hirano <shisama07@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
  • Loading branch information
Trott authored and targos committed Nov 10, 2019
1 parent aec8e77 commit a23b5cb
Show file tree
Hide file tree
Showing 4 changed files with 145 additions and 143 deletions.
8 changes: 4 additions & 4 deletions CPP_STYLE_GUIDE.md
Expand Up @@ -206,8 +206,8 @@ Use explicit comparisons to `nullptr` when testing pointers, i.e.

### Ownership and Smart Pointers

* [R.20]: Use `std::unique_ptr` or `std::shared_ptr` to represent ownership
* [R.21]: Prefer `unique_ptr` over `shared_ptr` unless you need to share
* [R.20][]: Use `std::unique_ptr` or `std::shared_ptr` to represent ownership
* [R.21][]: Prefer `unique_ptr` over `shared_ptr` unless you need to share
ownership

Use `std::unique_ptr` to make ownership transfer explicit. For example:
Expand Down Expand Up @@ -286,8 +286,8 @@ data[0] = 12345;

Further reading:

* [ES.48]: Avoid casts
* [ES.49]: If you must use a cast, use a named cast
* [ES.48][]: Avoid casts
* [ES.49][]: If you must use a cast, use a named cast

### Using `auto`

Expand Down
2 changes: 1 addition & 1 deletion benchmark/README.md
Expand Up @@ -74,7 +74,7 @@ The common.js module is used by benchmarks for consistency across repeated
tasks. It has a number of helpful functions and properties to help with
writing benchmarks.

### createBenchmark(fn, configs[, options])
### createBenchmark(fn, configs\[, options\])

See [the guide on writing benchmarks](../doc/guides/writing-and-running-benchmarks.md#basics-of-a-benchmark).

Expand Down

0 comments on commit a23b5cb

Please sign in to comment.