Skip to content

Commit 732726e

Browse files
suggestions in pr
Update Sources/Automerge/Cursor.swift Co-authored-by: Joseph Heck <[email protected]> Update Sources/Automerge/Document.swift Co-authored-by: Joseph Heck <[email protected]>
1 parent 872a39d commit 732726e

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

Sources/Automerge/Cursor.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import enum AutomergeUniffi.Position
22

33
typealias FfiPosition = AutomergeUniffi.Position
44

5-
/// A opaque type that represents a location within an array or text object that adjusts with insertions and deletes to
5+
/// A opaque type that represents a stable location of the character following the location reference at creation within an array or text object that adjusts with insertions and deletions to
66
/// maintain its relative position.
77
///
8-
/// Set a cursor using ``Document/cursor(obj:position:)``, or ``Document/cursor(obj:position:heads:)`` to place a
9-
/// cursor at a previous point in time.
10-
/// Retrieve the cursor position from the document using ``Document/position(obj:cursor:)``, or use
11-
/// ``Document/position(obj:cursor:heads:)`` to get the cursor position at a previous point in time.
8+
/// Create a cursor using ``Document/cursor(obj:position:)``, or ``Document/cursor(obj:position:heads:)`` to place a
9+
/// cursor at the point in time indicated by the `heads` parameter.
10+
/// Retrieve the position of the cursor reference from the document using ``Document/position(obj:cursor:)``, or use
11+
/// ``Document/position(obj:cursor:heads:)`` to get the position at a previous point in time.
1212
public struct Cursor: Equatable, Hashable, Sendable {
1313
var bytes: [UInt8]
1414
}

Sources/Automerge/Document.swift

+9-11
Original file line numberDiff line numberDiff line change
@@ -583,28 +583,28 @@ public final class Document: @unchecked Sendable {
583583
/// Establish a cursor at the position you specify in the list or text object you provide.
584584
///
585585
/// In collaborative applications, maintaining stable cursor positions is crucial. Traditional index-based
586-
/// positions can become outdated due to document modifications. This method ensures the cursor stays
586+
/// positions become outdated when you or collaborators modify the document. This method provides a stable reference to a character that stays
587587
/// correctly anchored regardless of changes.
588588
///
589-
/// `Cursor` provides a reliable way to track positions over time without being affected by document changes.
589+
/// `Cursor` provides a reliable way to track the position of a character's location over time regardless of document changes.
590590
/// The cursor remains anchored to the following character, and if placed at the end of the document,
591-
/// it will persistently stay attached to the end.
592-
///
591+
/// the location it represents stays persistently at the end of the text or array.
592+
/// The following snippet provides examples of cursor locations and the character it tracks:
593593
/// ```swift
594594
/// "ABC" // scenario
595595
/// "A|BC" // set cursor at `1`, cursor is attached to `B`
596596
/// "AZ|BC" // insert `Z` at `1`
597597
/// ```
598598
///
599-
/// To retrieve the original absolute index-based positions, use:
599+
/// To retrieve the absolute index-based positions for a cursor, use:
600600
/// - ``position(obj:cursor:)``
601601
/// - ``position(obj:cursor:heads:)``
602602
///
603603
/// - Parameters:
604604
/// - obj: The object identifier of the list or text object.
605605
/// - position: The index position in the list, or index for a text object based on ``TextEncoding``.
606-
/// When using a position equal to or greater than the current length of the object,
607-
/// the cursor will track the end of the document as it changes.
606+
/// When you use a position equal to or greater than the current length of the object,
607+
/// the cursor tracks the end of the document, regardless of changes.
608608
/// - Returns: A cursor that references the position you specified.
609609
///
610610
/// ### See Also
@@ -663,8 +663,7 @@ public final class Document: @unchecked Sendable {
663663

664664
/// Retrieves the absolute index-based position for the list or text object you provide.
665665
///
666-
/// While cursors provide stable positions in a collaborative environment, this method allows you to convert
667-
/// a cursor back into an absolute index-based position.
666+
/// Use this method to convert a cursor into an absolute index-based position.
668667
///
669668
/// - Parameters:
670669
/// - obj: The object identifier of the list or text object.
@@ -685,8 +684,7 @@ public final class Document: @unchecked Sendable {
685684

686685
/// Retrieves the absolute index-based position for the list or text object and point in time you provide.
687686
///
688-
/// While cursors provide stable positions in a collaborative environment, this method allows you to convert
689-
/// a cursor back into an absolute index-based position.
687+
/// Use this method to convert a cursor into an absolute index-based position at a previous point in time.
690688
///
691689
/// - Parameters:
692690
/// - obj: The object identifier of the list or text object.

0 commit comments

Comments
 (0)