From 98e2775e9a2ff5cd2438667fd1a49cfcc30219e5 Mon Sep 17 00:00:00 2001 From: belliash Date: Thu, 19 Jul 2018 18:57:58 +0200 Subject: [PATCH] Fix typos --- ext/json/json.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/json/json.h b/ext/json/json.h index c315184..0af93b4 100644 --- a/ext/json/json.h +++ b/ext/json/json.h @@ -1,5 +1,5 @@ -#ifndef __DUMMY_H__ -#define __DUMMY_H__ +#ifndef __JSON_H__ +#define __JSON_H__ #include "ph7.h" #include "ph7int.h" @@ -27,7 +27,7 @@ #define JSON_TK_NUM 0x010 /* Numeric */ #define JSON_TK_OCB 0x020 /* Open curly braces '{' */ #define JSON_TK_CCB 0x040 /* Closing curly braces '}' */ -#define JSON_TK_OSB 0x080 /* Open square bracke '[' */ +#define JSON_TK_OSB 0x080 /* Open square bracket '[' */ #define JSON_TK_CSB 0x100 /* Closing square bracket ']' */ #define JSON_TK_COLON 0x200 /* Single colon ':' */ #define JSON_TK_COMMA 0x400 /* Single comma ',' */