From 783c248d2f673351acea51c447c2e152201170ea Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Mon, 1 Apr 2024 19:42:35 +0200 Subject: [PATCH] Fix typo in function documentation (#2205) --- lib/src/parse/stylesheet.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/parse/stylesheet.dart b/lib/src/parse/stylesheet.dart index 82f3f4565..19662c192 100644 --- a/lib/src/parse/stylesheet.dart +++ b/lib/src/parse/stylesheet.dart @@ -552,7 +552,7 @@ abstract class StylesheetParser extends Parser { /// Tries parsing nested children of a declaration whose [name] has already /// been parsed, and returns `null` if it doesn't have any. /// - /// If [value] is passed, it's used as the value of the peroperty without + /// If [value] is passed, it's used as the value of the property without /// nesting. Declaration? _tryDeclarationChildren( Interpolation name, LineScannerState start,