Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit b0c45e2

Browse files
Kyle Delaneymunozemilio
authored andcommitted
Fix descriptions to make them more consistent (#244)
* Fix descriptions to make them more consistent * Update convert.ts * Update convert.ts * Update convert.ts
1 parent 9ab54c1 commit b0c45e2

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

packages/chatdown/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Tool for parsing chat files and outputting replayable activities
1414

1515
## `bf chatdown`
1616

17-
Converts chat dialog files in <filename>.chat format into transcript file. Writes corresponding <filename>.transcript for each .chat file
17+
Converts chat dialog files in <filename>.chat format into transcript files. Writes corresponding <filename>.transcript for each .chat file.
1818

1919
```
2020
USAGE

packages/chatdown/src/commands/chatdown/convert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const intercept = require('intercept-stdout')
1313
const path = require('path')
1414

1515
export default class ChatdownConvert extends Command {
16-
static description = 'Converts chat dialog files in <filename>.chat format into transcript file. Writes corresponding <filename>.transcript for each .chat file'
16+
static description = 'Converts chat dialog files in <filename>.chat format into transcript files. Writes corresponding <filename>.transcript for each .chat file.'
1717

1818
static examples = [`
1919
$ bf chatdown

packages/config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
## `bf config`
1919

20-
The config plugin allows users to configure various settings within the cli.
20+
Allows users to configure various settings within the cli.
2121

2222
```
2323
USAGE

packages/config/src/commands/config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import {Command, flags} from '@oclif/command'
77

88
export default class ConfigIndex extends Command {
9-
static description = 'The config plugin allows users to configure various settings within the cli.'
9+
static description = 'Configure various settings within the cli.'
1010

1111
static flags = {
1212
help: flags.help({char: 'h'}),

packages/lu/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
2929

3030
## `bf luis`
3131

32-
Convert, translate luis/lu files or generate source code
32+
Converts, translates luis/lu files or generates source code.
3333

3434
```
3535
USAGE
3636
$ bf luis
3737
3838
OPTIONS
39-
-h, --help Display Luis available commnads
39+
-h, --help Display Luis available commands
4040
```
4141

4242
_See code: [src/commands/luis/index.ts](https://github.com/microsoft/botframework-cli/tree/master/packages/lu/src/commands/luis/index.ts)_
@@ -127,7 +127,7 @@ _See code: [src/commands/luis/translate.ts](https://github.com/microsoft/botfram
127127

128128
## `bf qnamaker:convert`
129129

130-
Convert .lu file(s) to a QnA application JSON model or vice versa
130+
Converts .lu file(s) to QnA application JSON models or vice versa.
131131

132132
```
133133
USAGE

packages/lu/src/commands/luis/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
import {Command, flags} from '@microsoft/bf-cli-command'
77

88
export default class LuisIndex extends Command {
9-
static description = 'Convert, translate luis/lu files or generate source code'
9+
static description = 'Converts, translates luis/lu files or generates source code.'
1010

1111
static flags = {
12-
help: flags.help({char: 'h', description: 'Display Luis available commnads'}),
12+
help: flags.help({char: 'h', description: 'Display Luis available commands'}),
1313
}
1414

1515
async run() {

packages/lu/src/commands/qnamaker/convert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const qnaConverter = require('./../../parser/converters/qnajsontoqnaconverter')
1212
const fileExtEnum = require('./../../parser/lufile/helpers').FileExtTypeEnum
1313

1414
export default class QnamakerConvert extends Command {
15-
static description = 'Convert .lu file(s) to a QnA application JSON model or vice versa'
15+
static description = 'Converts .lu file(s) to QnA application JSON models or vice versa.'
1616

1717
static flags: flags.Input<any> = {
1818
in: flags.string({char: 'i', description: 'Source .qna file(s) or QnA KB JSON file'}),

packages/qnamaker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ USAGE
4242
$ bf qnamaker
4343
4444
OPTIONS
45-
-h, --help Display QnA Maker CLI available commnads
45+
-h, --help Display QnA Maker CLI available commands
4646
```
4747

4848
_See code: [src/commands/qnamaker/index.ts](https://github.com/microsoft/botframework-cli/tree/master/packages/qnamaker/src/commands/qnamaker/index.ts)_

packages/qnamaker/src/commands/qnamaker/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default class QnamakerIndex extends Command {
99
static description = 'QnA Maker'
1010

1111
static flags: flags.Input<any> = {
12-
help: flags.help({char: 'h', description: 'Display QnA Maker CLI available commnads'}),
12+
help: flags.help({char: 'h', description: 'Display QnA Maker CLI available commands'}),
1313
}
1414

1515
async run() {

specs/ChatdownDevSpec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ChatDown Dev Spec One-Pager
22

33
## Summary
4-
Converts chat dialog files in *.chat* format into transcript file. Writes corresponding *.transcript* for each .chat file.
4+
Converts chat dialog files in *.chat* format into transcript files. Writes corresponding *.transcript* for each .chat file.
55

66
## Requirements
77
### Prerequisites

0 commit comments

Comments
 (0)