Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 973b01c

Browse files
authored
Fix doc analyzer breakage (#39082)
1 parent d83a705 commit 973b01c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ui/hash_codes.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class _Jenkins {
6464
/// because [Object.hashAll]'s argument is not nullable:
6565
///
6666
/// ```dart
67-
/// int get hashCode => Object.hash(foo, bar, thud == null ? null : Object.hashAll(thud), baz);
67+
/// int get hashCode => Object.hash(foo, bar, thud == null ? null : Object.hashAll(thud!), baz);
6868
/// ```
6969
@Deprecated(
7070
'Use Object.hash() instead. '

0 commit comments

Comments
 (0)