Skip to content
This repository has been archived by the owner on Mar 5, 2020. It is now read-only.

Commit

Permalink
Added type annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedrosa committed Nov 20, 2011
1 parent 16d2f0b commit c936dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luhn.dart
Expand Up @@ -20,7 +20,7 @@ class Luhn {
return total % 10 == 0;
}

String mask(s) {
String mask(String s) {
var masked = null;
var i = 0;
var digitCount = 0;
Expand Down

0 comments on commit c936dc1

Please sign in to comment.