From 21a06df5e1a14300aa9fb9f4fd88a6655cc9a746 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 2 Oct 2021 14:04:41 +0100 Subject: [PATCH] Add alias for `MJSON` as `Bitsquid` --- core/encoding/json/types.odin | 1 + 1 file changed, 1 insertion(+) diff --git a/core/encoding/json/types.odin b/core/encoding/json/types.odin index b6ecec8ed..534d20311 100644 --- a/core/encoding/json/types.odin +++ b/core/encoding/json/types.odin @@ -34,6 +34,7 @@ Specification :: enum { JSON, JSON5, // https://json5.org/ MJSON, // https://bitsquid.blogspot.com/2009/10/simplified-json-notation.html + Bitsquid = MJSON, }