Skip to content

Commit 200a6ba

Browse files
committed
fixup: Epoch doc comments
1 parent 6fff38c commit 200a6ba

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

crates/sui-indexer-alt-graphql/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ type Query {
324324
"""
325325
Fetch epochs by their IDs.
326326
327-
Returns a list of epochs that is guarnateed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epocch does not exist yet, or because it was pruned.
327+
Returns a list of epochs that is guaranteed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epoch does not exist yet, or because it was pruned.
328328
"""
329329
multiGetEpochs(keys: [UInt53!]!): [Epoch]!
330330
"""

crates/sui-indexer-alt-graphql/src/api/query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ impl Query {
7676

7777
/// Fetch epochs by their IDs.
7878
///
79-
/// Returns a list of epochs that is guarnateed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epocch does not exist yet, or because it was pruned.
79+
/// Returns a list of epochs that is guaranteed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epoch does not exist yet, or because it was pruned.
8080
async fn multi_get_epochs(
8181
&self,
8282
ctx: &Context<'_>,

crates/sui-indexer-alt-graphql/src/snapshots/sui_indexer_alt_graphql__tests__schema.graphql.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ type Query {
328328
"""
329329
Fetch epochs by their IDs.
330330

331-
Returns a list of epochs that is guarnateed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epocch does not exist yet, or because it was pruned.
331+
Returns a list of epochs that is guaranteed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epoch does not exist yet, or because it was pruned.
332332
"""
333333
multiGetEpochs(keys: [UInt53!]!): [Epoch]!
334334
"""

crates/sui-indexer-alt-graphql/src/snapshots/sui_indexer_alt_graphql__tests__staging.graphql.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ type Query {
328328
"""
329329
Fetch epochs by their IDs.
330330

331-
Returns a list of epochs that is guarnateed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epocch does not exist yet, or because it was pruned.
331+
Returns a list of epochs that is guaranteed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epoch does not exist yet, or because it was pruned.
332332
"""
333333
multiGetEpochs(keys: [UInt53!]!): [Epoch]!
334334
"""

crates/sui-indexer-alt-graphql/staging.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ type Query {
324324
"""
325325
Fetch epochs by their IDs.
326326
327-
Returns a list of epochs that is guarnateed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epocch does not exist yet, or because it was pruned.
327+
Returns a list of epochs that is guaranteed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epoch does not exist yet, or because it was pruned.
328328
"""
329329
multiGetEpochs(keys: [UInt53!]!): [Epoch]!
330330
"""

0 commit comments

Comments
 (0)