@@ -828,20 +828,20 @@ exclamation mark is used to denote a field that uses a Non-Null type like this:
828828** Result Coercion**
829829
830830In all of the above result coercion, {null} was considered a valid value.
831- To coerce the result of a Non Null type, the coercion of the wrapped type
831+ To coerce the result of a Non- Null type, the coercion of the wrapped type
832832should be performed. If that result was not {null}, then the result of coercing
833- the Non Null type is that result. If that result was {null}, then a field error
833+ the Non- Null type is that result. If that result was {null}, then a field error
834834must be raised.
835835
836836** Input Coercion**
837837
838- If the argument of a Non Null type is not provided, a query error must
838+ If the argument of a Non- Null type is not provided, a query error must
839839be raised.
840840
841- If an argument of a Non Null type is provided with a literal value, it is
841+ If an argument of a Non- Null type is provided with a literal value, it is
842842coerced using the input coercion for the wrapped type.
843843
844- If the argument of a Non Null is provided with a variable, a query error must be
844+ If the argument of a Non- Null is provided with a variable, a query error must be
845845raised if the runtime provided value is not provided or is {null} in the
846846provided representation (usually JSON). Otherwise, the coerced value is the
847847result of using the input coercion for the wrapped type.
0 commit comments