Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion juniper/src/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub struct ExecutionError<S> {
impl<S> Eq for ExecutionError<S> where Self: PartialEq {}

impl<S> ExecutionError<S> {
/// Construct a new execution error occuring at the beginning of the query
/// Construct a new execution error occurring at the beginning of the query
pub fn at_origin(error: FieldError<S>) -> ExecutionError<S> {
ExecutionError {
location: SourcePosition::new_origin(),
Expand Down
2 changes: 1 addition & 1 deletion juniper/src/macros/helper/subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ where
S: ScalarValue,
{
/// Stream's return Value that will be returned if
/// no errors occured. Is used to determine field type in
/// no errors occurred. Is used to determine field type in
/// `#[juniper::graphql_subscription]`
type Item: GraphQLValue<S>;
}
Expand Down
4 changes: 2 additions & 2 deletions juniper_codegen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2055,7 +2055,7 @@ pub fn graphql_subscription(attr: TokenStream, body: TokenStream) -> TokenStream
///
/// # Custom name and description
///
/// The name of [GraphQL union][1] may be overriden with a `name` attribute's argument. By default,
/// The name of [GraphQL union][1] may be overridden with a `name` attribute's argument. By default,
/// a type name is used.
///
/// The description of [GraphQL union][1] may be specified either with a `description`/`desc`
Expand Down Expand Up @@ -2374,7 +2374,7 @@ pub fn derive_union(body: TokenStream) -> TokenStream {
///
/// # Custom name and description
///
/// The name of [GraphQL union][1] may be overriden with a `name` attribute's argument. By default,
/// The name of [GraphQL union][1] may be overridden with a `name` attribute's argument. By default,
/// a type name is used.
///
/// The description of [GraphQL union][1] may be specified either with a `description`/`desc`
Expand Down
Loading