From 871010abf03a358a048d60eb1bc1d4c8b34d45ab Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Sat, 29 Jun 2019 16:56:01 -0400 Subject: [PATCH] Fix a few mispellings of "relative" --- assembly.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assembly.py b/assembly.py index 8ae0b5d..d1b164b 100644 --- a/assembly.py +++ b/assembly.py @@ -732,7 +732,7 @@ class AsmElement(AsmBase): # pre-existing. Or else, it shall be the element to be amended # Group: the immediate child object of an assembly (i.e. ConstraintGroup, # ElementGroup, or PartGroup) - # Subname: the subname reference realtive to 'Group' + # Subname: the subname reference relative to 'Group' Selection = namedtuple('AsmElementSelection',('Element','Group','Subname', 'SelObj', 'SelSubname')) @@ -1212,7 +1212,7 @@ def getElementInfo(parent,subname, element owner will always be some (grand)child of the 'Part' Subname: the subname reference to the element owner object. The reference is - realtive to the 'Part', i.e. Object = Part.getSubObject(subname), or if + relative to the 'Part', i.e. Object = Part.getSubObject(subname), or if 'Part' is a tuple, Object = Part[0].getSubObject(str(Part[1]) + '.' + subname)