Skip to content

Commit 3ec2f3f

Browse files
authored
Fix a documentation typo (#889)
1 parent f1410ff commit 3ec2f3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/value/external/function.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import 'value.dart';
1616
abstract class SassFunction extends Value {
1717
/// The callable that this function invokes.
1818
///
19-
/// Note that this is typed as an [AsyncCallback] so that it will work with
19+
/// Note that this is typed as an [AsyncCallable] so that it will work with
2020
/// both synchronous and asynchronous evaluate visitors, but in practice the
21-
/// synchronous evaluate visitor will crash if this isn't a [Callback].
21+
/// synchronous evaluate visitor will crash if this isn't a [Callable].
2222
AsyncCallable get callable;
2323

2424
factory SassFunction(AsyncCallable callable) = internal.SassFunction;

0 commit comments

Comments
 (0)