From 33e32faeea486f9abf991d3590d05a03879ddcf5 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Fri, 30 Apr 2021 15:09:44 -0700 Subject: [PATCH] Fix a couple doc comment typos --- lib/src/ast/sass/expression/string.dart | 4 ++-- lib/src/configuration.dart | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/ast/sass/expression/string.dart b/lib/src/ast/sass/expression/string.dart index b2eb7a542..5302be5e2 100644 --- a/lib/src/ast/sass/expression/string.dart +++ b/lib/src/ast/sass/expression/string.dart @@ -71,8 +71,8 @@ class StringExpression implements Expression { return buffer.interpolation(text.span); } - /// Writes to [buffer] the contents of a string (without quotes) that evalutes - /// to [text] according to Sass's parsing logic. + /// Writes to [buffer] the contents of a string (without quotes) that + /// evaluates to [text] according to Sass's parsing logic. /// /// This always adds an escape sequence before [quote]. If [static] is true, /// it also escapes any `#{` sequences in the string. diff --git a/lib/src/configuration.dart b/lib/src/configuration.dart index 1522781ad..04a3a8048 100644 --- a/lib/src/configuration.dart +++ b/lib/src/configuration.dart @@ -77,7 +77,7 @@ class Configuration { ")"; } -/// A [Configuratoin] that was created with an explicit `with` clause of a +/// A [Configuration] that was created with an explicit `with` clause of a /// `@use` rule. /// /// Both types of configuration pass through `@forward` rules, but explicit