@@ -582,9 +582,8 @@ public final class Document: @unchecked Sendable {
582
582
583
583
/// Establish a cursor at the position you specify in the list or text object you provide.
584
584
///
585
- /// In collaborative applications, maintaining stable cursor positions is crucial. Traditional index-based
586
- /// positions become outdated when you or collaborators modify the document. This method provides a stable reference to a character that stays
587
- /// correctly anchored regardless of changes.
585
+ /// Traditional index-based positions become outdated when you or collaborators modify the document.
586
+ /// This method provides a stable reference to a character that stays correctly anchored regardless of changes.
588
587
///
589
588
/// `Cursor` provides a reliable way to track the position of a character's location over time regardless of document changes.
590
589
/// The cursor remains anchored to the following character, and if placed at the end of the document,
@@ -620,9 +619,8 @@ public final class Document: @unchecked Sendable {
620
619
621
620
/// Establish a cursor at the position and point of time you specify in the list or text object you provide.
622
621
///
623
- /// In collaborative applications, maintaining stable cursor positions is crucial. Traditional index-based
624
- /// positions can become outdated due to document modifications. This method ensures the cursor stays
625
- /// correctly anchored regardless of changes.
622
+ /// Traditional index-based positions become outdated when you or collaborators modify the document.
623
+ /// This method provides a stable reference to a character that stays correctly anchored regardless of changes.
626
624
///
627
625
/// `Cursor` provides a reliable way to track positions over time without being affected by document changes.
628
626
/// The cursor remains anchored to the following character, and if placed at the end of the document,
@@ -958,6 +956,7 @@ public final class Document: @unchecked Sendable {
958
956
/// ```
959
957
///
960
958
/// ## Recommendation
959
+ ///
961
960
/// Use this method to query the marks applied to a text object at a specific position.
962
961
/// This can be useful for retrieving the list of ``Automerge/Mark`` related to a character without
963
962
/// traversing the full document.
0 commit comments