Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ngallagher committed Feb 4, 2019
1 parent 6a33a30 commit b67c805
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 @@ -941,7 +941,7 @@ trait NumberFormat<T: Number> {
}
}
class DoubleFormat with Format<Double> {
class DoubleFormat with NumberFormat<Double> {
let places: Integer;
Expand All @@ -954,7 +954,7 @@ class DoubleFormat with Format<Double> {
}
}
class IntegerFormat with Format<Integer> {
class IntegerFormat with NumberFormat<Integer> {
override round(a: Integer) {
return a;
Expand Down

0 comments on commit b67c805

Please sign in to comment.