Skip to content

Commit

Permalink
Fix mistakes in README
Browse files Browse the repository at this point in the history
  • Loading branch information
nyancrimew committed Jan 24, 2017
1 parent e8efedb commit 49a1034
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 @@ -59,7 +59,7 @@
* [Array Sequence Counting](#array-sequence-counting)
* [Array Inserting](#array-inserting)
* [Array Appending](#array-appending)
* [Min / Max](#min-max)
* [Min / Max](#min--max)
* [Average](#average)
* [Sum](#sum)
* [String Reversing](#string-reversing)
Expand Down Expand Up @@ -223,7 +223,7 @@ Summing up a big array of `double` values can be done like in the next snippet

```java
double[] da = new double[] { 1.4, 2, 3 };
double sum = DoubleArrays.min(da);
double sum = DoubleArrays.sum(da);
```

### String Reversing
Expand Down

0 comments on commit 49a1034

Please sign in to comment.