Skip to content

docs: fix typo #816

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The default test script will do the following: lint with ESLint -> type check wi

## Project Structure

- **`docs`**: contains files used to generate https://vue-test-utils.vuejs.org/ with [GitBook](https://www.gitbook.com/).
- **`docs`**: contains files used to generate https://vue-test-utils.vuejs.org/ with [VuePress](https://github.com/vuejs/vuepress).

- **`flow`**: contains type declarations for [Flow](https://flowtype.org/). These declarations are loaded **globally** and you will see them used in type annotations in normal source code.

Expand All @@ -80,11 +80,11 @@ The default test script will do the following: lint with ESLint -> type check wi

- **`dist`**: contains built files for distribution. Note this directory is only updated when a release happens; they do not reflect the latest changes in development branches.

- **`create-instance`**: private package that creates an instance and applies mounting options.
- **`create-instance`**: private package that creates an instance and applies mounting options.

- **`shared`**: private package that contains utilities used by the other packzges.

- **`scripts`**: contains build-related scripts and configuration files. In most cases you don't need to touch them.
- **`scripts`**: contains build-related scripts and configuration files. In most cases you don't need to touch them.

- **`test`**: contains all tests. The unit tests are written with [Mocha](https://mochajs.org/) and run with [Karma](http://karma-runner.github.io/0.13/index.html) and [mocha-webpack](http://zinserjan.github.io/mocha-webpack/), which compiles the code with webpack before running it in mocha.

Expand Down