Skip to content

Commit b392d8c

Browse files
committed
Align notes and code in table
1 parent 81e1b1f commit b392d8c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docsrc/content/type-seqt.fsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,13 @@ The original post from AsyncSeq can be found [here](http://tomasp.net/blog/async
2323
2424
In order to do so we need to be aware of the design differences of both implementations.
2525
26-
<style>#fsdocs-content table, th, td{border: 1px solid black;border-collapse: collapse;}</style>
26+
<style>
27+
body #fsdocs-content table, th, td { border: 1px solid black;border-collapse: collapse; }
28+
body #fsdocs-content table code { word-break: normal; }
29+
</style>
2730
2831
| **AsyncSeq** | **SeqT** | **Notes** |
29-
|:------------------------------|:--------------------------------------|:----------|
32+
|:------------------------------|:--------------------------------------|:---------:|
3033
|`AsyncSeq<'T>` |`SeqT<Async<bool>, 'T>` | |
3134
|`asyncSeq { .. }` |`monad.plus { .. }` | At some point it needs to be inferred as `SeqT<Async<bool>, 'T>`, or it can be specified with type parameters: `monad<SeqT<Async<bool>, 'T>>.plus` |
3235
|`let! x = y` |`let! x = SeqT.lift y` | No auto lifting. Lifting should be explicit. |

0 commit comments

Comments
 (0)