diff --git a/poco/sdk/exceptions.py b/poco/sdk/exceptions.py index 269235e..70e908e 100644 --- a/poco/sdk/exceptions.py +++ b/poco/sdk/exceptions.py @@ -61,7 +61,7 @@ def __init__(self, matchingMethod, matcherName): class NonuniqueSurfaceException(Exception): """ - Raised when the device selector matches mutiple devices surface + Raised when the device selector matches multiple devices surface """ def __init__(self, selector): @@ -75,6 +75,6 @@ class InvalidSurfaceException(Exception): """ def __init__(self, target, msg="None"): - msg = 'Target device surface invalid ("{}") . Detial message: "{}"'.format(target, msg) + msg = 'Target device surface invalid ("{}") . Detail message: "{}"'.format(target, msg) super(InvalidSurfaceException, self).__init__(msg)