Mark table headers in kdocs
diff --git a/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/CancellableContinuation.kt b/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/CancellableContinuation.kt
index d67dec1..858754a 100644
--- a/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/CancellableContinuation.kt
+++ b/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/CancellableContinuation.kt
@@ -33,6 +33,7 @@
  * Cancellable continuation has three states:
  *
  * | **State**                           | [isActive] | [isCompleted] | [isCancelled] |
+ * | ----------------------------------- | ---------- | ------------- | ------------- |
  * | _Active_ (initial state)            | `true`     | `false`       | `false`       |
  * | _Resumed_ (final _completed_ state) | `false`    | `true`        | `false`       |
  * | _Canceled_ (final _completed_ state)| `false`    | `true`        | `true`        |
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`       |
diff --git a/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Job.kt b/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Job.kt
index 7d81966..0b1a68c 100644
--- a/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Job.kt
+++ b/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Job.kt
@@ -35,6 +35,7 @@
  * A job has two or three states:
  *
  * | **State**                        | [isActive] | [isCompleted] |
+ * | -------------------------------- | ---------- | ------------- |
  * | _New_ (optional initial state)   | `false`    | `false`       |
  * | _Active_ (default initial state) | `true`     | `false`       |
  * | _Completed_ (final state)        | `false`    | `true`        |