Skip to content

Commit 8fd22cd

Browse files
MachinisteWebchrisvfritz
authored andcommitted
[Doc EN]: some update for 2.5.0 documentation (#1218)
* New in with + symbol Signed-off-by: Bruno Lesieur <bruno.lesieur@gmail.com> * Review of 2.5.0 doc Signed-off-by: Bruno Lesieur <bruno.lesieur@gmail.com> * Review Signed-off-by: Bruno Lesieur <bruno.lesieur@gmail.com>
1 parent 6b57036 commit 8fd22cd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/v2/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ type: api
115115
Vue.config.ignoredElements = [
116116
'my-custom-web-component',
117117
'another-web-component',
118-
// Use a RegExp to ignore all elements that start with "ion-"
118+
// Use a `RegExp` to ignore all elements that start with "ion-"
119119
// 2.5+ only
120120
/^ion-/
121121
]

src/v2/guide/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ In the above example, the handler will only be called if `$event.key === 'PageDo
259259

260260
## System Modifier Keys
261261

262-
> New in 2.1.0
262+
> New in 2.1.0+
263263
264264
You can use the following modifiers to trigger mouse or keyboard event listeners only when the corresponding modifier key is pressed:
265265

@@ -284,7 +284,7 @@ For example:
284284

285285
### `.exact` Modifier
286286

287-
> New in 2.5.0
287+
> New in 2.5.0+
288288
289289
The `.exact` modifier should be used in combination with other system modifiers to indicate that the exact combination of modifiers must be pressed for the handler to fire.
290290

src/v2/guide/typescript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: guide
44
order: 404
55
---
66

7-
> In Vue 2.5.0 we have greatly improved our type declarations to work with the default object-based API. At the same time it introduces a few changes that require upgrade actions. Read [this blog post](https://medium.com/the-vue-point/upcoming-typescript-changes-in-vue-2-5-e9bd7e2ecf08) for more details.
7+
> In Vue 2.5.0+ we have greatly improved our type declarations to work with the default object-based API. At the same time it introduces a few changes that require upgrade actions. Read [this blog post](https://medium.com/the-vue-point/upcoming-typescript-changes-in-vue-2-5-e9bd7e2ecf08) for more details.
88
99
## Official Declaration in NPM Packages
1010

@@ -128,7 +128,7 @@ import Vue from 'vue'
128128

129129
declare module 'vue/types/vue' {
130130
// Global properties can be declared
131-
// on the VueConstructor interface
131+
// on the `VueConstructor` interface
132132
interface VueConstructor {
133133
$myGlobal: string
134134
}

0 commit comments

Comments
 (0)