fix Partity -> Parity typo

Signed-off-by: Alexis Tyler <xo@wvvw.me>
This commit is contained in:
Alexis Tyler
2019-07-15 16:16:12 +09:30
parent aa9912329b
commit d5054bad09

View File

@@ -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 {