File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff 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.
3434pub struct FlightClient {
3535 channel : Channel ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ use crate::{
1414
1515pub 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 ) ]
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ use crate::{
3030static 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 ) ]
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments