Skip to content

Commit 3354629

Browse files
authored
Fix typo in ParametersError.context deprecation.
1 parent eefb1d6 commit 3354629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openapi_core/validation/request/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ParametersError(Exception):
1616
def context(self) -> Iterable[Exception]:
1717
warnings.warn(
1818
"context property of ParametersError is deprecated. "
19-
"Use erros instead.",
19+
"Use errors instead.",
2020
DeprecationWarning,
2121
)
2222
return self.errors

0 commit comments

Comments
 (0)