From 3e989735adb928e41bd1a507621509f3df9ce4ff Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Sun, 5 Nov 2017 14:36:31 +0300 Subject: [PATCH] Small docs fix --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 91608b8..5df2b44 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ $ ./bin/flow2avro - Output: ```javascript -[ +[{ type: 'record', name: 'Foo', namespace: 'example', @@ -36,7 +36,7 @@ Output: { type: 'enum', symbols: [ 'one', 'two' ] }, ] }, ], -] +}] ``` ## TODO diff --git a/package.json b/package.json index 450f8b3..b7291fc 100644 --- a/package.json +++ b/package.json @@ -32,6 +32,6 @@ "nyc": "^11.3.0" }, "scripts": { - "test": "nyc --reporter=text mocha tests/do" + "test": "nyc mocha tests/do" } }