From 5c7a5cf59fd93cc2d7d8320233c1d094bd268592 Mon Sep 17 00:00:00 2001 From: Alexander Morgan Date: Tue, 26 Dec 2023 13:35:00 +0100 Subject: [PATCH] Fix whitespace --- music21/meter/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music21/meter/tools.py b/music21/meter/tools.py index e791c91e7..3947ee252 100644 --- a/music21/meter/tools.py +++ b/music21/meter/tools.py @@ -245,7 +245,7 @@ def fractionSum(numDenomTuple): >>> fractionSum(()) (0, 1) - Not reducing to the lowest terms is a feature of this method. + Not reducing to the lowest terms is a feature of this method. i.e. 3/8 + 3/8 = 6/8, not 3/4: >>> fractionSum(((3, 8), (3, 8)))