@@ -148,7 +148,7 @@ pub mod raw {
148148 ///
149149 /// Traps if:
150150 /// - `prefix_elems > 0`
151- /// and (`prefix_ptr` is NULL or `prefix` is not in bounds of WASM memory).
151+ /// and (`prefix_ptr` is NULL or `prefix` is not in bounds of WASM memory).
152152 /// - `rstart` is NULL or `rstart` is not in bounds of WASM memory.
153153 /// - `rend` is NULL or `rend` is not in bounds of WASM memory.
154154 /// - `out` is NULL or `out[..size_of::<RowIter>()]` is not in bounds of WASM memory.
@@ -161,11 +161,11 @@ pub mod raw {
161161 /// - `NO_SUCH_INDEX`, when `index_id` is not a known ID of an index.
162162 /// - `WRONG_INDEX_ALGO` if the index is not a range-compatible index.
163163 /// - `BSATN_DECODE_ERROR`, when `prefix` cannot be decoded to
164- /// a `prefix_elems` number of `AlgebraicValue`
165- /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
166- /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
167- /// where the inner `AlgebraicValue`s are
168- /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
164+ /// a `prefix_elems` number of `AlgebraicValue`
165+ /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
166+ /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
167+ /// where the inner `AlgebraicValue`s are
168+ /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
169169 pub fn datastore_index_scan_range_bsatn (
170170 index_id : IndexId ,
171171 prefix_ptr : * const u8 ,
@@ -212,7 +212,7 @@ pub mod raw {
212212 ///
213213 /// Traps if:
214214 /// - `prefix_elems > 0`
215- /// and (`prefix_ptr` is NULL or `prefix` is not in bounds of WASM memory).
215+ /// and (`prefix_ptr` is NULL or `prefix` is not in bounds of WASM memory).
216216 /// - `rstart` is NULL or `rstart` is not in bounds of WASM memory.
217217 /// - `rend` is NULL or `rend` is not in bounds of WASM memory.
218218 /// - `out` is NULL or `out[..size_of::<u32>()]` is not in bounds of WASM memory.
@@ -225,11 +225,11 @@ pub mod raw {
225225 /// - `NO_SUCH_INDEX`, when `index_id` is not a known ID of an index.
226226 /// - `WRONG_INDEX_ALGO` if the index is not a range-compatible index.
227227 /// - `BSATN_DECODE_ERROR`, when `prefix` cannot be decoded to
228- /// a `prefix_elems` number of `AlgebraicValue`
229- /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
230- /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
231- /// where the inner `AlgebraicValue`s are
232- /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
228+ /// a `prefix_elems` number of `AlgebraicValue`
229+ /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
230+ /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
231+ /// where the inner `AlgebraicValue`s are
232+ /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
233233 pub fn datastore_delete_by_index_scan_range_bsatn (
234234 index_id : IndexId ,
235235 prefix_ptr : * const u8 ,
@@ -364,7 +364,7 @@ pub mod raw {
364364 /// - `NOT_IN_TRANSACTION`, when called outside of a transaction.
365365 /// - `NO_SUCH_TABLE`, when `table_id` is not a known ID of a table.
366366 /// - `BSATN_DECODE_ERROR`, when `row` cannot be decoded to a `ProductValue`.
367- /// typed at the `ProductType` the table's schema specifies.
367+ /// typed at the `ProductType` the table's schema specifies.
368368 /// - `UNIQUE_ALREADY_EXISTS`, when inserting `row` would violate a unique constraint.
369369 /// - `SCHEDULE_AT_DELAY_TOO_LONG`, when the delay specified in the row was too long.
370370 pub fn datastore_insert_bsatn ( table_id : TableId , row_ptr : * mut u8 , row_len_ptr : * mut usize ) -> u16 ;
@@ -406,8 +406,8 @@ pub mod raw {
406406 /// - `INDEX_NOT_UNIQUE`, when the index was not unique.
407407 /// - `NO_SUCH_ROW`, when the row was not found in the unique index.
408408 /// - `BSATN_DECODE_ERROR`, when `row` cannot be decoded to a `ProductValue`
409- /// typed at the `ProductType` the table's schema specifies
410- /// or when it cannot be projected to the index identified by `index_id`.
409+ /// typed at the `ProductType` the table's schema specifies
410+ /// or when it cannot be projected to the index identified by `index_id`.
411411 /// - `UNIQUE_ALREADY_EXISTS`, when inserting `row` would violate a unique constraint.
412412 /// - `SCHEDULE_AT_DELAY_TOO_LONG`, when the delay specified in the row was too long.
413413 pub fn datastore_update_bsatn (
@@ -942,11 +942,11 @@ pub fn datastore_table_scan_bsatn(table_id: TableId) -> Result<RowIter, Errno> {
942942/// - `NO_SUCH_INDEX`, when `index_id` is not a known ID of an index.
943943/// - `WRONG_INDEX_ALGO` if the index is not a range-compatible index.
944944/// - `BSATN_DECODE_ERROR`, when `prefix` cannot be decoded to
945- /// a `prefix_elems` number of `AlgebraicValue`
946- /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
947- /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
948- /// where the inner `AlgebraicValue`s are
949- /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
945+ /// a `prefix_elems` number of `AlgebraicValue`
946+ /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
947+ /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
948+ /// where the inner `AlgebraicValue`s are
949+ /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
950950pub fn datastore_index_scan_range_bsatn (
951951 index_id : IndexId ,
952952 prefix : & [ u8 ] ,
@@ -990,11 +990,11 @@ pub fn datastore_index_scan_range_bsatn(
990990/// - `NO_SUCH_INDEX`, when `index_id` is not a known ID of an index.
991991/// - `WRONG_INDEX_ALGO` if the index is not a range-compatible index.
992992/// - `BSATN_DECODE_ERROR`, when `prefix` cannot be decoded to
993- /// a `prefix_elems` number of `AlgebraicValue`
994- /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
995- /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
996- /// where the inner `AlgebraicValue`s are
997- /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
993+ /// a `prefix_elems` number of `AlgebraicValue`
994+ /// typed at the initial `prefix_elems` `AlgebraicType`s of the index's key type.
995+ /// Or when `rstart` or `rend` cannot be decoded to an `Bound<AlgebraicValue>`
996+ /// where the inner `AlgebraicValue`s are
997+ /// typed at the `prefix_elems + 1` `AlgebraicType` of the index's key type.
998998pub fn datastore_delete_by_index_scan_range_bsatn (
999999 index_id : IndexId ,
10001000 prefix : & [ u8 ] ,
0 commit comments