From: Clément Date: Fri, 6 Mar 2020 16:44:37 +0000 (+0100) Subject: chore: fix typo (#130) X-Git-Tag: v4.0.0-alpha.2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c015d3e88d8d1c8e2970db1c2c82d8433e4de2dd;p=thirdparty%2Fvuejs%2Frouter.git chore: fix typo (#130) --- diff --git a/.github/contributing.md b/.github/contributing.md index fa4ee257..7d77a949 100644 --- a/.github/contributing.md +++ b/.github/contributing.md @@ -90,7 +90,7 @@ $ yarn jest --watch Vue Router source code can be found in the `src` directory: - `src/components`: RouterLink and RouterView components. -- `src/history`: history implementations that are instantianble with `create*History()`. This folder contains code related to using the [History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API). +- `src/history`: history implementations that are instantiable with `create*History()`. This folder contains code related to using the [History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API). - `src/matcher`: RouteMatcher implementation. Contains the code that transforms paths like `/users/:id` into regexes and handle the transformation of locations like `{ name: 'UserDetail', params: { id: '2' } }` to strings. It contains path ranking logic and the part of dynamic routing that concerns matching urls in the right order. - `src/utils`: contains util functions that are used accross other sections of the router but are not contained by them. - `src/router`: contains the router creation, navigation execution, using the matcher, the history implementation. It runs navigation guards.