From a22eef106077850db7dd2d9da5703a4d0b3b9ffe Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Sat, 27 Sep 2014 20:46:58 +0900 Subject: [PATCH] fix comments --- include/picrin/value.h | 2 +- vm.c | 40 ++++++++++++++++++++-------------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/include/picrin/value.h b/include/picrin/value.h index d0c1dbe3..709fcf77 100644 --- a/include/picrin/value.h +++ b/include/picrin/value.h @@ -41,7 +41,7 @@ enum pic_vtype { * ptr : 111111111111TTTT PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP * int : 1111111111110110 0000000000000000 IIIIIIIIIIIIIIII IIIIIIIIIIIIIIII * sym : 1111111111110111 0000000000000000 SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSS - * char : 1111111111111000 0000000000000000 CCCCCCCCCCCCCCCC ................ + * char : 1111111111111000 0000000000000000 CCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCC */ typedef uint64_t pic_value; diff --git a/vm.c b/vm.c index accb47ce..32e7869c 100644 --- a/vm.c +++ b/vm.c @@ -35,27 +35,27 @@ pic_get_proc(pic_state *pic) } /** - * char type desc. - * ---- ---- ---- - * o pic_value * object - * i int * int - * I int *, bool * int with exactness - * k size_t * size_t implicitly converted from int - * f double * float - * F double *, bool * float with exactness - * s pic_str ** string object - * z char ** c string - * m pic_sym * symbol - * v pic_vec ** vector object - * b pic_blob ** bytevector object - * c char * char - * l struct pic_proc ** lambda object - * p struct pic_port ** port object - * d struct pic_dict ** dictionary object - * e struct pic_error ** error object + * char type desc. + * ---- ---- ---- + * o pic_value * object + * i int * int + * I int *, bool * int with exactness + * k size_t * size_t implicitly converted from int + * f double * float + * F double *, bool * float with exactness + * s pic_str ** string object + * z char ** c string + * m pic_sym * symbol + * v pic_vec ** vector object + * b pic_blob ** bytevector object + * c char * char + * l struct pic_proc ** lambda object + * p struct pic_port ** port object + * d struct pic_dict ** dictionary object + * e struct pic_error ** error object * - * | optional operator - * * int *, pic_value ** variable length operator + * | optional operator + * * size_t *, pic_value ** variable length operator */ int