diff --git a/doc/docs.md b/doc/docs.md
index e99a08b23f..0ea07706ea 100644
--- a/doc/docs.md
+++ b/doc/docs.md
@@ -839,7 +839,7 @@ nums[1] = 5
println(nums) // `[1, 5, 3]`
```
-
+
An element can be appended to the end of an array using the push operator `<<`.
It can also append an entire array.
@@ -2133,7 +2133,7 @@ This example will not compile, since the field `n` isn't explicitly initialized:
_ = Foo{}
```
-
+
### Short struct literal syntax
@@ -2871,7 +2871,7 @@ println(User{ name: 'Bob', age: 20 }) // "User{name:'Bob', age:20}"
See also [Array methods](#array-methods).
-
+
### Printing custom types