From 8beff776267a0123684ce0baca25792d8d499c87 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Wed, 22 Nov 2023 11:15:47 +0200 Subject: [PATCH] Correct typos in exceptions.py --- poco/sdk/exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poco/sdk/exceptions.py b/poco/sdk/exceptions.py index 269235e6..70e908eb 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)