From bef250eb8d44ba58fa04f82df7550a79b068d2d0 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 29 Mar 2021 11:47:12 -0300 Subject: Details Comments and small improvements in the manual. --- lobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 950bebbd..a1b45543 100644 --- a/lobject.h +++ b/lobject.h @@ -112,7 +112,7 @@ typedef struct TValue { #define settt_(o,t) ((o)->tt_=(t)) -/* main macro to copy values (from 'obj1' to 'obj2') */ +/* main macro to copy values (from 'obj2' to 'obj1') */ #define setobj(L,obj1,obj2) \ { TValue *io1=(obj1); const TValue *io2=(obj2); \ io1->value_ = io2->value_; settt_(io1, io2->tt_); \ -- cgit v1.2.3-55-g6feb