Skip to content

Commit 7c5ba50

Browse files
committed
docs: Replace object/instance with struct
1 parent e8841a8 commit 7c5ba50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/indexes.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -621,14 +621,14 @@ impl<'a> Index<'a> {
621621

622622
/// Get the status of an update on the index.
623623
///
624-
/// After executing an update, a `Progress` object is returned,
625-
/// you can use this object to check on the status of the update.
624+
/// After executing an update, a `Progress` struct is returned,
625+
/// you can use this struct to check on the status of the update.
626626
///
627627
/// In some cases, you might not need the status of the update directly,
628628
/// or would rather not wait for it to resolve.
629629
///
630630
/// For these cases, you can get the `update_id` from the `Progress`
631-
/// object and use it to query the index later on.
631+
/// struct and use it to query the index later on.
632632
///
633633
/// For example, if a clients updates an entry over an HTTP request,
634634
/// you can respond with the `update_id` and have the client check

0 commit comments

Comments
 (0)