File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ List<String>? _normalizeNonCanonicalSchemes(Object? schemes) =>
250
250
};
251
251
252
252
/// Implements the simplification algorithm for custom function return `Value` s.
253
- /// {@link https://github.com/sass/sass/blob/main/spec/types/calculation.md#simplifying-a-calculationvalue}
253
+ /// See https://github.com/sass/sass/blob/main/spec/types/calculation.md#simplifying-a-calculationvalue
254
254
Value _simplifyValue (Value value) => switch (value) {
255
255
SassCalculation () => switch ((
256
256
// Match against...
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class Box<T> {
13
13
14
14
Box ._(this ._inner);
15
15
16
- bool operator == (Object ? other) => other is Box <T > && other._inner == _inner;
16
+ bool operator == (Object other) => other is Box <T > && other._inner == _inner;
17
17
18
18
int get hashCode => _inner.hashCode;
19
19
}
You can’t perform that action at this time.
0 commit comments