Skip to content

Commit 3e19ece

Browse files
miguelangel-devheckj
authored andcommitted
comments in pr
1 parent 2759797 commit 3e19ece

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Sources/Automerge/Document.swift

+5-6
Original file line numberDiff line numberDiff line change
@@ -582,9 +582,8 @@ public final class Document: @unchecked Sendable {
582582

583583
/// Establish a cursor at the position you specify in the list or text object you provide.
584584
///
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.
588587
///
589588
/// `Cursor` provides a reliable way to track the position of a character's location over time regardless of document changes.
590589
/// 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 {
620619

621620
/// Establish a cursor at the position and point of time you specify in the list or text object you provide.
622621
///
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.
626624
///
627625
/// `Cursor` provides a reliable way to track positions over time without being affected by document changes.
628626
/// 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 {
958956
/// ```
959957
///
960958
/// ## Recommendation
959+
///
961960
/// Use this method to query the marks applied to a text object at a specific position.
962961
/// This can be useful for retrieving the list of ``Automerge/Mark`` related to a character without
963962
/// traversing the full document.

0 commit comments

Comments
 (0)