Skip to content

doc: fix typo #2802

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
Oct 27, 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 docs/dev-guide/ui-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ vue ui -D

You can add a project configuration with the `api.describeConfig` method.

First you need to pass some informations:
First you need to pass some information:

```js
api.describeConfig({
Expand Down Expand Up @@ -430,7 +430,7 @@ api.describeTask({
if (answers.mode) args.push('--mode', answers.mode)
args.push('--dashboard')
},
// Immediatly after running the task
// Immediately after running the task
onRun: async ({ args, child, cwd }) => {
// child: node child process
// cwd: process working directory
Expand Down Expand Up @@ -1252,7 +1252,7 @@ You can also open a page instead when the user activates the suggestion with `ac
```js
api.addSuggestion({
id: 'com.my-name.my-suggestion',
type: 'action', // Required
type: 'action', // Required
label: 'Add vue-router',
// Open a new tab
actionLink: 'https://vuejs.org/'
Expand Down