Skip to content

Commit

Permalink
refactor: make reservedKey consistent with existing pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed Aug 11, 2022
1 parent 1c0c688 commit 2e416cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion at_commons/lib/src/validators/at_key_validation_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class _AtKeyValidatorImpl extends AtKeyValidator {
_regex = regexes.cachedSharedKey;
break;
case KeyType.reservedKey:
_regex = Regexes.reservedKey;
_regex = regexes.reservedKey;
break;
case KeyType.invalidKey:
_regex = '';
Expand Down

0 comments on commit 2e416cd

Please sign in to comment.