From a5f052135333e9f43d647bdbf28012f125f75c46 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Fri, 28 Jun 2019 16:31:24 +0100 Subject: [PATCH] utils/types: Fix typos --- wa/utils/types.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wa/utils/types.py b/wa/utils/types.py index 68caec93..e1879c4f 100644 --- a/wa/utils/types.py +++ b/wa/utils/types.py @@ -170,9 +170,9 @@ def list_or_caseless_string(value): def list_or(type_): """ Generator for "list or" types. These take either a single value or a list - values and return a list of the specfied ``type_`` performing the + values and return a list of the specified ``type_`` performing the conversion on the value (if a single value is specified) or each of the - elemented of the specified list. + elements of the specified list. """ list_type = list_of(type_) @@ -288,7 +288,7 @@ class prioritylist(object): - ``new_element`` the element to be inserted in the prioritylist - ``priority`` is the priority of the element which specifies its - order withing the List + order within the List """ self._add_element(new_element, priority)