From 02f9a588132444db628c94c228ab4cf489314631 Mon Sep 17 00:00:00 2001
From: Lars Trieloff <trieloff@adobe.com>
Date: Thu, 14 Dec 2017 17:01:02 +0000
Subject: [PATCH] [trivial] fix schema name

---
 examples/docs/README.md                        |  2 +-
 examples/docs/complex.schema.md                | 10 +++++-----
 examples/generated-schemas/complex.schema.json |  2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/examples/docs/README.md b/examples/docs/README.md
index a5ba12c..a28cb28 100644
--- a/examples/docs/README.md
+++ b/examples/docs/README.md
@@ -8,7 +8,7 @@
 
 * [Abstract](./abstract.schema.md) – `https://example.com/schemas/abstract`
 * [Arrays](./arrays.schema.md) – `https://example.com/schemas/arrays`
-* [Enumerated ](./complex.schema.md) – `https://example.com/schemas/complex`
+* [Complex References ](./complex.schema.md) – `https://example.com/schemas/complex`
 * [Constant Types](./constants.schema.md) – `https://example.com/schemas/constants`
 * [Custom](./custom.schema.md) – `https://example.com/schemas/custom`
 * [Deeply Extending](./deepextending.schema.md) – `https://example.com/schemas/deepextending`
diff --git a/examples/docs/complex.schema.md b/examples/docs/complex.schema.md
index 114ef90..22986d7 100644
--- a/examples/docs/complex.schema.md
+++ b/examples/docs/complex.schema.md
@@ -3,7 +3,7 @@ template: reference
 foo: bar
 ---
 
-# Enumerated  Schema
+# Complex References  Schema
 
 ```
 https://example.com/schemas/complex
@@ -17,16 +17,16 @@ This is an example schema that uses types defined in other schemas.
 
 ## Schema Hierarchy
 
-* Enumerated  `https://example.com/schemas/complex`
+* Complex References  `https://example.com/schemas/complex`
   * [Abstract](abstract.schema.md) `https://example.com/schemas/abstract`
   * [Simple](simple.schema.md) `https://example.com/schemas/simple`
 
-# Enumerated  Properties
+# Complex References  Properties
 
 | Property | Type | Required | Defined by |
 |----------|------|----------|------------|
-| [refabstract](#refabstract) | complex | **Required** | Enumerated  (this schema) |
-| [refnamed](#refnamed) | complex | Optional | Enumerated  (this schema) |
+| [refabstract](#refabstract) | complex | **Required** | Complex References  (this schema) |
+| [refnamed](#refnamed) | complex | Optional | Complex References  (this schema) |
 
 ## refabstract
 
diff --git a/examples/generated-schemas/complex.schema.json b/examples/generated-schemas/complex.schema.json
index c11dfd0..83d891b 100644
--- a/examples/generated-schemas/complex.schema.json
+++ b/examples/generated-schemas/complex.schema.json
@@ -7,7 +7,7 @@
     ],
     "$schema": "http://json-schema.org/draft-06/schema#",
     "$id": "https://example.com/schemas/complex",
-    "title": "Enumerated ",
+    "title": "Complex References ",
     "type": "object",
     "description": "This is an example schema that uses types defined in other schemas.",
     "properties": {
-- 
GitLab