From 590e9945905f363ebc3d23f1bb3d409fe4bd524f Mon Sep 17 00:00:00 2001 From: David Turner Date: Wed, 20 Nov 2024 21:32:16 -0500 Subject: [PATCH] Fixed a docstring typo --- xga/models/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xga/models/base.py b/xga/models/base.py index e56d2f68..55fc3c48 100644 --- a/xga/models/base.py +++ b/xga/models/base.py @@ -1,5 +1,5 @@ # This code is a part of X-ray: Generate and Analyse (XGA), a module designed for the XMM Cluster Survey (XCS). -# Last modified by David J Turner (turne540@msu.edu) 07/08/2024, 10:14. Copyright (c) The Contributors +# Last modified by David J Turner (turne540@msu.edu) 20/11/2024, 21:32. Copyright (c) The Contributors import inspect from abc import ABCMeta, abstractmethod @@ -564,7 +564,7 @@ def compare_units(check_pars: List[Quantity], good_pars: List[Quantity]) -> List :param List[Quantity] good_pars: The second list of parameters, these are taken as having 'correct' units. :return: Only if the check pars pass the tests. We return the check pars list but with all elements - converted to EXACTLY the same units as good_pars, not just equivelant. + converted to EXACTLY the same units as good_pars, not just equivalent. :rtype: List[Quantity] """ if len(check_pars) != len(good_pars):