diff --git a/internal/css_parser/css_decls_list_style.go b/internal/css_parser/css_decls_list_style.go index 331983e7fe3..113769d782b 100644 --- a/internal/css_parser/css_decls_list_style.go +++ b/internal/css_parser/css_decls_list_style.go @@ -13,7 +13,7 @@ import ( // : | | | // // list-style-type: | | none (where the string is a literal bullet marker) -// : | +// : | // : not: decimal | disc | square | circle | disclosure-open | disclosure-closed | // when parsing a with conflicts, only parse one if no other thing can claim it diff --git a/internal/js_parser/js_parser.go b/internal/js_parser/js_parser.go index 33a412aedce..e41bc4eb378 100644 --- a/internal/js_parser/js_parser.go +++ b/internal/js_parser/js_parser.go @@ -1068,7 +1068,7 @@ func (p *parser) pushScopeForParsePass(kind js_ast.ScopeKind, loc logger.Loc) in p.currentScope = scope // Enforce that scope locations are strictly increasing to help catch bugs - // where the pushed scopes are mistmatched between the first and second passes + // where the pushed scopes are mismatched between the first and second passes if len(p.scopesInOrder) > 0 { prevStart := p.scopesInOrder[len(p.scopesInOrder)-1].loc.Start if prevStart >= loc.Start {