We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cb96d0 commit 31d0888Copy full SHA for 31d0888
juniper/src/types/scalars.rs
@@ -261,7 +261,7 @@ where
261
}
262
263
fn from_str<'a>(value: ScalarToken<'a>) -> ParseScalarResult<'a, S> {
264
- // Bools are parsed on it's own. This should not hit this code path
+ // Bools are parsed separately - they shouldn't reach this code path
265
Err(ParseError::UnexpectedToken(Token::Scalar(value)))
266
267
@@ -338,7 +338,7 @@ impl<T> EmptyMutation<T> {
338
339
340
341
-// This is safe due to never using `T`.
+// This is safe because `T` is never used.
342
unsafe impl<T> Send for EmptyMutation<T> {}
343
344
impl<S, T> GraphQLType<S> for EmptyMutation<T>
0 commit comments