Skip to content

Commit

Permalink
Fix spelling mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonic-The-Hedgehog-LNK1123 authored Mar 22, 2019
1 parent b4e55e4 commit 9447b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ GenericGF field = new GenericGF(285, 256, 0);

## Reed-Solomon encoding:

Create a instance of the `ReedSolomonEncoder` class, specifying the Galois field to use:
Create an instance of the `ReedSolomonEncoder` class, specifying the Galois field to use:

```C#
ReedSolomonEncoder rse = new ReedSolomonEncoder(field);
Expand Down Expand Up @@ -50,7 +50,7 @@ Providing the locations of some erasures:
int[] erasures = new int[] { 0, 1, 2 };
```

Create a instance of the `ReedSolomonDecoder` class, specifying the Galois field to use:
Create an instance of the `ReedSolomonDecoder` class, specifying the Galois field to use:

```C#
ReedSolomonDecoder rsd = new ReedSolomonDecoder(field);
Expand Down

0 comments on commit 9447b6d

Please sign in to comment.