Skip to content

Commit 6f32f5e

Browse files
authored
Fix markup
Triple backticks is for code blocks, not inline code.
1 parent b65e01b commit 6f32f5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/node-gyp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Until now **node-gyp** is the **de-facto** standard build tool for writing
1111
Node.js addons. It's based on Google's **gyp** build tool, which abstract away
1212
many of the tedious issues related to cross platform building.
1313

14-
**node-gyp** uses a file called ```binding.gyp``` that is located on the root of
14+
**node-gyp** uses a file called `binding.gyp` that is located on the root of
1515
your addon project.
1616

17-
```binding.gyp``` file, contains all building configurations organized with a
17+
`binding.gyp` file, contains all building configurations organized with a
1818
JSON like syntax. The most important parameter is the **target** that must be
1919
set to the same value used on the initialization code of the addon as in the
2020
examples reported below:
@@ -75,7 +75,7 @@ NODE_API_MODULE(NODE_GYP_MODULE_NAME, Init)
7575
- [Command options](https://www.npmjs.com/package/node-gyp#command-options)
7676
- [Configuration](https://www.npmjs.com/package/node-gyp#configuration)
7777

78-
Sometimes finding the right settings for ```binding.gyp``` is not easy so to
78+
Sometimes finding the right settings for `binding.gyp` is not easy so to
7979
accomplish at most complicated task please refer to:
8080

8181
- [GYP documentation](https://gyp.gsrc.io/index.md)

0 commit comments

Comments
 (0)