diff --git a/README.md b/README.md
index ab521d38..bcec5e6d 100644
--- a/README.md
+++ b/README.md
@@ -1355,7 +1355,7 @@
})(this);↵
```
- - [18.5](#18.5) Use indentation when making long method chains. Use a leading dot, which
+ - [18.6](#18.6) Use indentation when making long method chains. Use a leading dot, which
emphasizes that the line is a method call, not a new statement.
```javascript
@@ -1395,7 +1395,7 @@
.call(tron.led);
```
- - [18.6](#18.6) Leave a blank line after blocks and before the next statement.
+ - [18.7](#18.7) Leave a blank line after blocks and before the next statement.
```javascript
// bad