Skip to content

Commit 02480e0

Browse files
committed
chore(graph): fix typos
1 parent 4204585 commit 02480e0

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
@@ -30,7 +30,7 @@ use crate::{
3030
static API_VERSIONS: LazyLock<HashSet<Version>> =
3131
LazyLock::new(|| HashSet::from([Version::new(0, 0, 1)]));
3232

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

graph/src/amp/manifest/mod.rs

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

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

graph/src/data/subgraph/mod.rs

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

868868
if amp_data_sources.is_empty() {
869-
// Not a Amp subgraph
869+
// Not an Amp subgraph
870870
return Vec::new();
871871
}
872872

0 commit comments

Comments
 (0)