Mark table headers in kdocs
diff --git a/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Deferred.kt b/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Deferred.kt
index ee1c713..472cfd8 100644
--- a/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Deferred.kt
+++ b/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Deferred.kt
@@ -27,6 +27,7 @@
  * Deferred value has four or five possible states.
  *
  * | **State**                        | [isActive] | [isCompleted] | [isCompletedExceptionally] | [isCancelled] |
+ * | -------------------------------- | ---------- | ------------- | -------------------------- | ------------- |
  * | _New_ (optional initial state)   | `false`    | `false`       | `false`                    | `false`       |
  * | _Active_ (default initial state) | `true`     | `false`       | `false`                    | `false`       |
  * | _Resolved_  (final state)        | `false`    | `true`        | `false`                    | `false`       |