Kara-Moon Forum

Developers & Technology => Musical MIDI Accompaniment (MMA) => Topic started by: sciurius on July 22, 2019, 05:47:33 PM



Title: Typo(s)
Post by: sciurius on July 22, 2019, 05:47:33 PM
macro.py,

    def setvar(self, ln):
        """ Set a variable. Not the difference between the next 2 lines:
                Set Bar BAR
                Set Foo AAA BBB $bar
                   $Foo == "AAA BBB BAR"
                Set Foo AAA + BBB + $bar
                   $Foo == "AAABBBBAR"

            The "+"s just strip out intervening spaces.
        """

It should be "Note the difference ..."

Also, there are 3 lines following...

        """ Set a variable.
                Set Bar BAR

              Note the difference between the next 2 lines:
                Set Foo AAA BBB $bar
                   $Foo == "AAA BBB BAR"
                Set Foo AAA + BBB + $bar
                   $Foo == "AAABBBBAR"

            The "+"s just strip out intervening spaces.
        """


Title: Re: Typo(s)
Post by: bvdp on July 22, 2019, 05:57:43 PM
Oh my ... spelling mistakes in source code internal documentation! Unbelievable! You have sharp eyes ... and should be grateful that I have any comments at all in my sources: you and I  both know that that is a bit of a rarity :) But, yes, it's fixed!!!!

Thanks.