From 9388738f99feff777eaa53b6f69bed247bf8cec5 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Wed, 1 Aug 2012 17:09:03 -0700 Subject: [PATCH] Fix issue #14. The listing of unions was mislabled as 'structs'. --- types.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.d b/types.d index c9cd2be..3f7b5bf 100644 --- a/types.d +++ b/types.d @@ -465,7 +465,7 @@ public: else f.writeln(); } - f.writeln(" ],\n \"structs\" : ["); + f.writeln(" ],\n \"unions\" : ["); foreach(i, un; unions) { un.writeJSONTo(f, indent + 1);