lua-users home
lua-l archive

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


> Some minor nitpicks follow.
> 
> [...]

Thanks for the feedback.


> - in a lot of places, 'returns @true' and 'returns true' are used
> interchangeably (and thus a bit incoherently) in the manual; you
> probably know that already...

Usually, we use '@true' when we want to emphasize that it returns the
boolean true; 'true' means something like "a true value that happens
to be @true". (We also use 'true' when talking about C code.) But
it may be incoherent in some places.

-- Roberto