Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-08-27 06:52:08 +0300
committerRich Trott <rtrott@gmail.com>2019-10-10 06:55:14 +0300
commit0d061e2d090c6aa8b2874289ecdfc28a4d0f2eff (patch)
tree47865af688b77ad48360b299ce8d2b9a4a97ed3d /doc/STYLE_GUIDE.md
parentb41989d03a38347a0ae018c5cbfbab898ba454fe (diff)
doc: remove spaces inside code span elements
Applies MarkdownLint MD038 rule PR-URL: https://github.com/nodejs/node/pull/29329 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/STYLE_GUIDE.md')
-rw-r--r--doc/STYLE_GUIDE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/STYLE_GUIDE.md b/doc/STYLE_GUIDE.md
index 3cc162f6dc8..6f98ad1fc8f 100644
--- a/doc/STYLE_GUIDE.md
+++ b/doc/STYLE_GUIDE.md
@@ -43,7 +43,7 @@
* Instances should use camelCase.
* Denote methods with parentheses: `socket.end()` instead of `socket.end`.
* Function arguments or object properties should use the following format:
- * ``` * `name` {type|type2} Optional description. **Default:** `value`. ```
+ * ```* `name` {type|type2} Optional description. **Default:** `value`.```
<!--lint disable maximum-line-length remark-lint-->
* For example: <code>* `byteOffset` {integer} Index of first byte to expose. **Default:** `0`.</code>
<!--lint enable maximum-line-length remark-lint-->