]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
chore: fix typo (#130)
authorClément <clemvnt@gmail.com>
Fri, 6 Mar 2020 16:44:37 +0000 (17:44 +0100)
committerGitHub <noreply@github.com>
Fri, 6 Mar 2020 16:44:37 +0000 (17:44 +0100)
.github/contributing.md

index fa4ee2573b67c858874de4b0e4bdf277f61cb98e..7d77a9496628698f40bc896781249fd05830ce54 100644 (file)
@@ -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.