Skip to content

Commit 7ad7f77

Browse files
fix unless -> if
1 parent 3cce9be commit 7ad7f77

File tree

1 file changed

+1
-1
lines changed
  • pages/plural-features/continuous-deployment

1 file changed

+1
-1
lines changed

pages/plural-features/continuous-deployment/lua.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ local value = {
8888
]
8989
}
9090
local valid, err = encoding.jsonSchema(value, "./schema.json")
91-
unless valid do
91+
if not valid do
9292
error(err) -- return the validation error to the caller
9393
end
9494
-- Result: true (if valid)

0 commit comments

Comments
 (0)