Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit fcce237

Browse files
committed
docs(ngModel/numfmt): remove redundant argument
1 parent d7e31b5 commit fcce237

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/error/ngModel/numfmt.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ directive to convert it into the format the `input[number]` directive expects.
4747
return '' + value;
4848
});
4949
ngModel.$formatters.push(function(value) {
50-
return parseFloat(value, 10);
50+
return parseFloat(value);
5151
});
5252
}
5353
};
5454
});
5555
</file>
56-
</example>
56+
</example>

0 commit comments

Comments
 (0)