Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit 951477e

Browse files
committed
Fix grammar in doc comment
1 parent 202a670 commit 951477e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/indent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import {syntaxTree} from "./language"
1212
export const indentService = Facet.define<(context: IndentContext, pos: number) => number | null | undefined>()
1313

1414
/// Facet for overriding the unit by which indentation happens. Should
15-
/// be a string consisting either entirely of the same whitespace
16-
/// character. When not set, this defaults to 2 spaces.
15+
/// be a string consisting entirely of the same whitespace character.
16+
/// When not set, this defaults to 2 spaces.
1717
export const indentUnit = Facet.define<string, string>({
1818
combine: values => {
1919
if (!values.length) return " "

0 commit comments

Comments
 (0)