Skip to content

Commit ddf9c8d

Browse files
authored
Fixed indentation
1 parent bf77720 commit ddf9c8d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ Instead, IO must be assumed and the size of the data set, without any internal k
1919

2020
This library provides classes to explicitly encode the extra information in the return type
2121
* Synchronous
22-
* Maybe<T>: A data set of size 0 - 1
23-
* LazyValue<T>: Returns a data set of size 1
24-
* Mostly intended for usage internally (As synchronous single non-io values will typically just be returned without a wrapping Monad)
22+
* Maybe<T>: A data set of size 0 - 1
23+
* LazyValue<T>: Returns a data set of size 1
24+
* Mostly intended for usage internally (As synchronous single non-io values will typically just be returned without a wrapping Monad)
2525

2626
* Asynchronous
27-
* IO<T>: Performs IO and returns a data set of size 1
28-
* MaybeIO<T>: Performs IO and returns a data set of size 0 - 1
29-
* ManyIO<T>: Performs IO and returns a data set of size 0 - N
27+
* IO<T>: Performs IO and returns a data set of size 1
28+
* MaybeIO<T>: Performs IO and returns a data set of size 0 - 1
29+
* ManyIO<T>: Performs IO and returns a data set of size 0 - N
3030

3131
The intent is to use these in situations where a non-descriptive IEnumerable or IObservable would otherwise be returned (or, with Maybe, a null).
3232

0 commit comments

Comments
 (0)