From e30cd203a08485fa490df87aeba37a28fed3a557 Mon Sep 17 00:00:00 2001 From: linarphy Date: Wed, 24 May 2023 12:26:18 +0200 Subject: [PATCH] Fix typo in doc --- utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index 514b3bc..acc5192 100644 --- a/utils.py +++ b/utils.py @@ -51,8 +51,8 @@ def big_to_small( indexes , factor ): def small_to_big( indexes , factor ): """ - convert a coordinate of a point n the compressed data to the same coordinate - in the compressed one + convert a coordinate of a point in the compressed data to the same coordinate + in the non compressed one """ if not isinstance( indexes , int ) and not isinstance( indexes , list ) and not isinstance( indexes , np.ndarray ): raise ValueError( 'indexes must be an integer or a list, ' + type( indexes ) + ' given' )