Piotrek Koszuliński il y a 7 ans
Parent
commit
d3bbad5247
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      docs/framework/guides/architecture/editing-engine.md

+ 1 - 1
docs/framework/guides/architecture/editing-engine.md

@@ -92,7 +92,7 @@ OK, but how to let CKEditor 5 know that I want the selection to "be bold" in the
 
 To handle that, selection also {@link module:engine/model/selection~Selection#setAttribute has attributes}. If the selection is placed in `"Foo ^bar"` and it has the attribute `bold=true`, you know that the user will type bold text.
 
-### Indexes and offsetss
+### Indexes and offsets
 
 However, it has just been said that inside `<paragraph>` there are two text nodes: `"Foo "` and `"bar"`. If you know how [native DOM Ranges](https://developer.mozilla.org/en-US/docs/Web/API/Range) work you might thus ask: "But if the selection is at the boundary of two text nodes, is it anchored in the left one, the right one, or in the containing element?"