Skip to content

Commit 821529a

Browse files
committed
Just syntax
1 parent 45871e7 commit 821529a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Generic ADTs in Java.
33

44
## Using
55

6-
To use `algebra` in your project simply include it in your POM:
6+
To use `algebra-public` in your project simply include it in your POM:
77

88
```xml
99
<dependency>
@@ -15,7 +15,7 @@ To use `algebra` in your project simply include it in your POM:
1515

1616
## Provided Types
1717

18-
The main type provided by `algebra` is the `Result<T, E>`. `T` and `E` can be any classes you want, but it is generally advisable that `E` be an enum or another ADT so you can correctly match on error conditions. Lets take a look at an example.
18+
The main type provided by `algebra-public` is the `Result<T, E>`. `T` and `E` can be any classes you want, but it is generally advisable that `E` be an enum or another ADT so you can correctly match on error conditions. Lets take a look at an example.
1919

2020
```java
2121
enum Error {

0 commit comments

Comments
 (0)