From 38bb76808b9c878b81de2d2e2e8a69e1d542ff77 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Thu, 13 Feb 2014 13:52:11 +0900 Subject: [PATCH] small comment fix --- src/symbol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/symbol.c b/src/symbol.c index 2d75ed76..4e931ea3 100644 --- a/src/symbol.c +++ b/src/symbol.c @@ -37,7 +37,7 @@ pic_gensym(pic_state *pic, pic_sym base) str = (char *)pic_alloc(pic, strlen(pic_symbol_name(pic, base)) + (int)log10(s) + 3); sprintf(str, "%s@%d", pic_symbol_name(pic, base), s); - /* don't put the symbol to pic->sym_tbl to keep it uninterned */ + /* don't put the symbol to pic->syms to keep it uninterned */ uniq = pic->sym_cnt++; xh_put_int(pic->sym_names, uniq, (long)str);