lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


In the gsub library function description:

    x
        (where x is any magic characters ^$()%.[]*+-?) - represents the character x itself.

should probably read:


    x
        (where x is not one of the magic characters ^$()%.[]*+-?) - represents the character x
itself.


-John