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 @@ -31,7 +31,7 @@ use crate::{
3131static 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 ) ]
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments