summaryrefslogtreecommitdiffstats
path: root/dimension/tokenize.c
diff options
context:
space:
mode:
Diffstat (limited to 'dimension/tokenize.c')
-rw-r--r--dimension/tokenize.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dimension/tokenize.c b/dimension/tokenize.c
index efa7fce..fc715b8 100644
--- a/dimension/tokenize.c
+++ b/dimension/tokenize.c
@@ -53,7 +53,7 @@ dmnsn_tokenize(FILE *file)
break;
case '}':
- token.type = DMNSN_LBRACE;
+ token.type = DMNSN_RBRACE;
token.value = NULL;
dmnsn_array_push(tokens, &token);
break;
@@ -123,12 +123,12 @@ dmnsn_token_name(dmnsn_token_type token_type)
{
switch (token_type) {
case DMNSN_LBRACE:
- return "DMNSN_LBRACE";
+ return "{";
case DMNSN_RBRACE:
- return "DMNSN_RBRACE";
+ return "}";
default:
- return "UNRECOGNIZED-TOKEN";
+ return "unrecognized-token";
}
}