Skip to content

Commit a687a3e

Browse files
authored
Merge pull request #6 from sebastianmika/master
Nits: just some mini-spelling error
2 parents d687f55 + 0ff058e commit a687a3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openapi_schema_validator/_validators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ def readOnly(validator, ro, instance, schema):
7272
return
7373

7474
yield ValidationError(
75-
"Tried to write read-only proparty with %s" % (instance))
75+
"Tried to write read-only property with %s" % (instance))
7676

7777

7878
def writeOnly(validator, wo, instance, schema):
7979
if not validator.read or not wo:
8080
return
8181

8282
yield ValidationError(
83-
"Tried to read write-only proparty with %s" % (instance))
83+
"Tried to read write-only property with %s" % (instance))
8484

8585

8686
def not_implemented(validator, value, instance, schema):

0 commit comments

Comments
 (0)