Skip to content
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ try
number = hashids.DecodeSingle("NkK9");
}
catch (NoResultException) { // Decoding the provided hash has not yielded any result. }
catch (MultipleResultsException) { // The decoding process yielded more than one result when just one was expected. }
```

`number` is now going to be:
Expand Down Expand Up @@ -143,7 +142,6 @@ try
number = hashids.DecodeSingleLong("KVO9yy1oO5j");
}
catch (NoResultException) { // Decoding the provided hash has not yielded any result. }
catch (MultipleResultsException) { // The decoding process yielded more than one result when just one was expected. }
```

`number` is now going to be:
Expand Down
Loading