diff --git a/doc/19-library-reference.md b/doc/19-library-reference.md
index 0f0eed85f..3de6d6921 100644
--- a/doc/19-library-reference.md
+++ b/doc/19-library-reference.md
@@ -803,7 +803,7 @@ Example:
Inherits methods from the [Object type](19-library-reference.md#object-type).
-### DateTime constructor
+### DateTime constructor
Signature:
@@ -820,7 +820,7 @@ Example:
var d1 = DateTime() /* current time */
var d2 = DateTime(2016, 5, 21) /* midnight April 21st, 2016 (local time) */
-### DateTime arithmetic
+### DateTime arithmetic
Subtracting two DateTime objects yields the interval between them, in seconds.
@@ -840,7 +840,7 @@ Example:
var dt = DateTime() + 24 * 60 60 /* Current time plus 24 hours */
-### DateTime#format
+### DateTime#format
Signature:
@@ -853,7 +853,7 @@ Example:
var s = DateTime(2016, 4, 21).format("%A") /* Sets s to "Thursday". */
-### DateTime#to_string
+### DateTime#to_string
Signature: