diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-04-02 20:10:56 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-04-02 20:10:56 +0100 |
| commit | 22afac2b90557e8f4935ccde6c8dec08ad296eb9 (patch) | |
| tree | 34207cac5cf3dc19f2fc8ce158d64ccf10252b79 /src/check_expr.c | |
| parent | 01da0d1377cee93d51d5fa7175ba1b8b626c243f (diff) | |
Update README.md with latest demo
Diffstat (limited to 'src/check_expr.c')
| -rw-r--r-- | src/check_expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/check_expr.c b/src/check_expr.c index 477520aa7..797295c0f 100644 --- a/src/check_expr.c +++ b/src/check_expr.c @@ -3204,8 +3204,8 @@ bool check_builtin_procedure(Checker *c, Operand *operand, AstNode *call, i32 id } break; #endif case BuiltinProc_make: { - // make :: proc(Type, len: int) -> []Type - // make :: proc(Type, len, cap: int) -> []Type + // make :: proc(Type, len: int) -> Type + // make :: proc(Type, len, cap: int) -> Type Operand op = {0}; check_expr_or_type(c, &op, ce->args.e[0]); Type *type = op.type; |