Skip to content

Commit 4cadade

Browse files
committed
chore(graph): fix typos
1 parent 762e27f commit 4cadade

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

graph/src/amp/client/flight_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use crate::{
2929

3030
/// A client for the Amp Flight gRPC service.
3131
///
32-
/// This client connects to a Amp server and executes SQL queries
32+
/// This client connects to an Amp server and executes SQL queries
3333
/// using the Apache Arrow Flight protocol.
3434
pub struct FlightClient {
3535
channel: Channel,

graph/src/amp/manifest/data_source/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use crate::{
1414

1515
pub use self::raw::RawDataSource;
1616

17-
/// Represents a valid data source of a Amp subgraph.
17+
/// Represents a valid data source of an Amp subgraph.
1818
///
1919
/// This data source contains parsed, formatted, and resolved data.
2020
#[derive(Debug, Clone)]

graph/src/amp/manifest/data_source/raw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use crate::{
3131
static API_VERSIONS: LazyLock<HashSet<Version>> =
3232
LazyLock::new(|| HashSet::from([Version::new(0, 0, 1)]));
3333

34-
/// Represents an unmodified input data source of a Amp subgraph.
34+
/// Represents an unmodified input data source of an Amp subgraph.
3535
///
3636
/// May contain invalid or partial data.
3737
#[derive(Debug, Clone, Deserialize)]

graph/src/amp/manifest/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub struct Manifest {
3131

3232
/// The Amp data sources of the subgraph.
3333
///
34-
/// A Amp subgraph can only contain Amp data sources.
34+
/// An Amp subgraph can only contain Amp data sources.
3535
pub data_sources: Vec<DataSource>,
3636
}
3737

graph/src/data/subgraph/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ impl<C: Blockchain> UnvalidatedSubgraphManifest<C> {
926926
.collect_vec();
927927

928928
if amp_data_sources.is_empty() {
929-
// Not a Amp subgraph
929+
// Not an Amp subgraph
930930
return Vec::new();
931931
}
932932

0 commit comments

Comments
 (0)