diff --git a/src/v2/guide/typescript.md b/src/v2/guide/typescript.md
index e5283d8443..334c024caf 100644
--- a/src/v2/guide/typescript.md
+++ b/src/v2/guide/typescript.md
@@ -144,8 +144,7 @@ var vm = new Vue({
## Annotating Return Types
-Because of the circular nature of Vue's declaration files, TypeScript may have difficulties inferring the types of certain methods.
-For this reason, you may need to annotate the return type on methods like `render` and those in `computed`.
+Because of the circular nature of Vue's declaration files, TypeScript may have difficulties inferring the types of certain methods. For this reason, you may need to annotate the return type on methods like `render` and those in `computed`.
```ts
import Vue, { VNode } from 'vue'
@@ -175,5 +174,4 @@ const Component = Vue.extend({
})
```
-If you find type inference or member completion isn't working, annotating certain methods may help address these problems.
-Using the `--noImplicitAny` option will help find many of these unannotated methods.
+If you find type inference or member completion isn't working, annotating certain methods may help address these problems. Using the `--noImplicitAny` option will help find many of these unannotated methods.
diff --git a/src/v2/style-guide/index.md b/src/v2/style-guide/index.md
index 3e40a7c0bb..c368162e0b 100644
--- a/src/v2/style-guide/index.md
+++ b/src/v2/style-guide/index.md
@@ -1377,34 +1377,34 @@ This is the default order we recommend for component options. They're split into
2. **List Rendering** (creates multiple variations of the same element)
- `v-for`
-2. **Conditionals** (whether the element is rendered/shown)
+3. **Conditionals** (whether the element is rendered/shown)
- `v-if`
- `v-else-if`
- `v-else`
- `v-show`
- `v-cloak`
-3. **Render Modifiers** (changes the way the element renders)
+4. **Render Modifiers** (changes the way the element renders)
- `v-pre`
- `v-once`
-4. **Global Awareness** (requires knowledge beyond the component)
+5. **Global Awareness** (requires knowledge beyond the component)
- `id`
-5. **Unique Attributes** (attributes that require unique values)
+6. **Unique Attributes** (attributes that require unique values)
- `ref`
- `key`
- `slot`
-6. **Two-Way Binding** (combining binding and events)
+7. **Two-Way Binding** (combining binding and events)
- `v-model`
-7. **Other Attributes** (all unspecified bound & unbound attributes)
+8. **Other Attributes** (all unspecified bound & unbound attributes)
-8. **Events** (component event listeners)
+9. **Events** (component event listeners)
- `v-on`
-9. **Content** (overrides the content of the element)
+10. **Content** (overrides the content of the element)
- `v-html`
- `v-text`
@@ -1476,7 +1476,7 @@ computed: {
### Single-file component top-level element order recommended
-**[Single-file components](../guide/single-file-components.html) should always order `template`, `script`, and `style` tags consistently, with `