@@ -9,12 +9,12 @@ import Foundation
99
1010public extension Index {
1111
12- // MARK: - Task status
12+ // MARK: - IndexTask status
1313
1414 /**
15- Check the current TaskStatus of a given Task .
15+ Check the current TaskStatus of a given IndexTask .
1616
17- - parameter taskID: of the indexing [Task ].
17+ - parameter taskID: of the indexing [IndexTask ].
1818 - parameter requestOptions: Configure request locally with [RequestOptions]
1919 */
2020 @discardableResult func taskStatus( for taskID: TaskID ,
@@ -25,9 +25,9 @@ public extension Index {
2525 }
2626
2727 /**
28- Check the current TaskStatus of a given Task .
28+ Check the current TaskStatus of a given IndexTask .
2929
30- - parameter taskID: of the indexing [Task ].
30+ - parameter taskID: of the indexing [IndexTask ].
3131 - parameter requestOptions: Configure request locally with [RequestOptions]
3232 */
3333 @discardableResult func taskStatus( for taskID: TaskID ,
@@ -39,7 +39,7 @@ public extension Index {
3939 // MARK: - Wait task
4040
4141 /**
42- Wait for a Task to complete before executing the next line of code, to synchronize index updates.
42+ Wait for a IndexTask to complete before executing the next line of code, to synchronize index updates.
4343 All write operations in Algolia are asynchronous by design.
4444 It means that when you add or update an object to your index, our servers will reply to your request with
4545 a TaskID as soon as they understood the write operation.
@@ -63,7 +63,7 @@ public extension Index {
6363 }
6464
6565 /**
66- Wait for a Task to complete before executing the next line of code, to synchronize index updates.
66+ Wait for a IndexTask to complete before executing the next line of code, to synchronize index updates.
6767 All write operations in Algolia are asynchronous by design.
6868 It means that when you add or update an object to your index, our servers will reply to your request with
6969 a TaskID as soon as they understood the write operation.
0 commit comments