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

Commit d3bc18a

Browse files
committed
Remove unnecessary clarification
1 parent 634850c commit d3bc18a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/rules/avoid_init_to_null.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const _desc = r"Don't explicitly initialize variables to null.";
1616
const _details = r'''
1717
From [Effective Dart](https://dart.dev/guides/language/effective-dart/usage#dont-explicitly-initialize-variables-to-null):
1818
19-
**DON'T** explicitly initialize nullable variables to `null`.
19+
**DON'T** explicitly initialize variables to `null`.
2020
2121
If a variable has a non-nullable type or is `final`,
2222
Dart reports a compile error if you try to use it

0 commit comments

Comments
 (0)