diff --git a/docs/Garbage-Collector.md b/docs/Garbage-Collector.md
index 0daef0e1..5b3e33a0 100644
--- a/docs/Garbage-Collector.md
+++ b/docs/Garbage-Collector.md
@@ -165,22 +165,22 @@ During a GC cycle the collector thread transitions through the following states.
### Clear
The collector swaps the values of the clear color (white) and the mark color (black). This is more efficient than modifying the color on each object in the heap. The collector then transitions to sync 1. At this point no heap objects are marked, as demonstrated below:
-
+
### Mark
The collector transitions to sync 2 and then async. At this point it marks the global variables and waits for the mutators to also transition to async:
-
+
### Trace
The collector finds all live objects using a breadth-first search and marks them black:
-
+
### Sweep
The collector scans the heap and frees memory used by all white objects:
-
+
If the heap is still low on memory at this point the heap will be increased in size. Also, to ensure a complete collection, data for any terminated threads is not freed until now.