From d5054bad090d856c0e71abf02bb4161a887512e4 Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Mon, 15 Jul 2019 16:16:12 +0930 Subject: [PATCH] fix Partity -> Parity typo Signed-off-by: Alexis Tyler --- app/graphql/schema/types/array/parity.graphql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/graphql/schema/types/array/parity.graphql b/app/graphql/schema/types/array/parity.graphql index 4a73e487d..91ee450a9 100644 --- a/app/graphql/schema/types/array/parity.graphql +++ b/app/graphql/schema/types/array/parity.graphql @@ -4,13 +4,13 @@ type Query { type Mutation { """Start parity check""" - startPartityCheck(correct: Boolean): JSON @func(module: "array/update-parity-check", data: { state: "start" }) + startParityCheck(correct: Boolean): JSON @func(module: "array/update-parity-check", data: { state: "start" }) """Pause parity check""" - pausePartityCheck: JSON @func(module: "array/update-parity-check", data: { state: "pause" }) + pauseParityCheck: JSON @func(module: "array/update-parity-check", data: { state: "pause" }) """Resume parity check""" - resumePartityCheck: JSON @func(module: "array/update-parity-check", data: { state: "resume" }) + resumeParityCheck: JSON @func(module: "array/update-parity-check", data: { state: "resume" }) """Cancel parity check""" - cancelPartityCheck: JSON @func(module: "array/update-parity-check", data: { state: "cancel" }) + cancelParityCheck: JSON @func(module: "array/update-parity-check", data: { state: "cancel" }) } type ParityCheck {