Skip to content

Commit 2cfa1b7

Browse files
ahmedmohmdovflowd
andauthored
Update npm-semantic-versioning.en.md (nodejs#2769)
Co-authored-by: Claudio Wunder <[email protected]>
1 parent 85b4f19 commit 2cfa1b7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

content/learn/npm-semantic-versioning.en.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ If there's one great thing in Node.js packages, it's that they all agreed on usi
99

1010
The Semantic Versioning concept is simple: all versions have 3 digits: `x.y.z`.
1111

12-
* the first digit is the major version
13-
* the second digit is the minor version
14-
* the third digit is the patch version
12+
* the first digit `x` is the major version
13+
* the second digit `y` is the minor version
14+
* the third digit `z` is the patch version
1515

1616
When you make a new release, you don't just up a number as you please, but you have rules:
1717

@@ -27,8 +27,8 @@ Because `npm` set some rules we can use in the `package.json` file to choose whi
2727

2828
The rules use these symbols:
2929

30-
* `^`
31-
* `~`
30+
* `^`: Caret Character
31+
* `~`: Tilde Character
3232
* `>`
3333
* `>=`
3434
* `<`

0 commit comments

Comments
 (0)