From dce94b0dbd0809b2f5a041593c10e0ac03ffadb0 Mon Sep 17 00:00:00 2001 From: David Keller Date: Mon, 15 Jan 2018 10:28:15 +0100 Subject: [PATCH] Fix two documentation typos --- docs/backend.md | 2 +- docs/structure.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/backend.md b/docs/backend.md index e7acadf7c5..ecbc99592a 100644 --- a/docs/backend.md +++ b/docs/backend.md @@ -11,7 +11,7 @@ const path = require('path') module.exports = { dev: { - / Paths + // Paths assetsSubDirectory: 'static', assetsPublicPath: '/', proxyTable: {}, diff --git a/docs/structure.md b/docs/structure.md index 75c958a42f..341a51614b 100644 --- a/docs/structure.md +++ b/docs/structure.md @@ -21,8 +21,8 @@ │ │ ├── eslintrc # config file for eslint with extra settings only for unit tests │ │ ├── index.js # test build entry file │ │ ├── jest.conf.js # Config file when using Jest for unit tests -│ │ └── karma.conf.js # test runner config file when using Karma for unit tests -│ │ ├── setup.js # file that runs before Jest runs your unit tests +│ │ ├── karma.conf.js # test runner config file when using Karma for unit tests +│ │ └── setup.js # file that runs before Jest runs your unit tests │ └── e2e/ # e2e tests │ │   ├── specs/ # test spec files │ │   ├── custom-assertions/ # custom assertions for e2e tests