From f7b6f438ef5ca504eebef39bfc11850ff2c39c3e Mon Sep 17 00:00:00 2001 From: Sunny Hirai Date: Tue, 6 Apr 2021 22:03:03 -0700 Subject: [PATCH] docs: Add single quotes around option value that is a string --- docs/api/nodes/editor.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/nodes/editor.md b/docs/api/nodes/editor.md index 726b92a5f..cc5d72f89 100644 --- a/docs/api/nodes/editor.md +++ b/docs/api/nodes/editor.md @@ -120,9 +120,9 @@ Options: `{at?: Location | Span, match?: NodeMatch, mode?: 'all' | 'highest' | ' `options.mode`: -- `all` (default): all matching nodes -- `highest`: in a hierarchy of nodes, only return the highest level matching nodes -- `lowest`: in a hierarchy of nodes, only return the lowest level matching nodes +- `'all'` (default): all matching nodes +- `'highest'`: in a hierarchy of nodes, only return the highest level matching nodes +- `'lowest'`: in a hierarchy of nodes, only return the lowest level matching nodes #### `Editor.parent(editor: Editor, at: Location, options?): NodeEntry`