From 436cc28b125599e0b95bd5ea1d3190a8de9e5f0d Mon Sep 17 00:00:00 2001 From: Takashi Aoki Date: Mon, 21 Dec 2015 11:20:50 -0800 Subject: [PATCH] Fix typo in examples --- CHANGELOG.md | 16 ++++++++++++++++ examples/no-router-lib/basic/metrics.config.js | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdc8479..5584350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + + +**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)* + +- [1.0.1](#101) +- [1.0.0](#100) + + + +## 1.0.1 + +Bugfixes: + + - Avoid invariant error when server caches modules + - Fix typo in examples + ## 1.0.0 Features: diff --git a/examples/no-router-lib/basic/metrics.config.js b/examples/no-router-lib/basic/metrics.config.js index 1e5701e..206004a 100644 --- a/examples/no-router-lib/basic/metrics.config.js +++ b/examples/no-router-lib/basic/metrics.config.js @@ -1,5 +1,5 @@ import pkg from "../../../package.json"; -import GoogleMetrics from "../../vendors/GoogleAnalytics"; +import GoogleAnalytics from "../../vendors/GoogleAnalytics"; const config = { vendors: [ @@ -34,7 +34,7 @@ const config = { } }, { - api: new GoogleMetrics({ + api: new GoogleAnalytics({ trackingId: "UA-68539421-1" }) }