diff --git a/src/commands/airline/aircraftType.ts b/src/commands/airline/aircraftType.ts index 9be2135..07ebf38 100644 --- a/src/commands/airline/aircraftType.ts +++ b/src/commands/airline/aircraftType.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('aircraftType') - .description(`Returns a random aircraft type.`) + .description(`Generates a random aircraft type.`) .action(() => { console.log(faker.airline.aircraftType()); }); diff --git a/src/commands/airline/flightNumber.ts b/src/commands/airline/flightNumber.ts index 0996f67..92ef3a1 100644 --- a/src/commands/airline/flightNumber.ts +++ b/src/commands/airline/flightNumber.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('flightNumber') - .description( - `Returns a random flight number. Flight numbers are always 1 to 4 digits long. Sometimes they are`, - ) + .description(`Generates a random flight number.`) .action(() => { console.log(faker.airline.flightNumber()); }); diff --git a/src/commands/airline/recordLocator.ts b/src/commands/airline/recordLocator.ts index 8c10a85..2d94756 100644 --- a/src/commands/airline/recordLocator.ts +++ b/src/commands/airline/recordLocator.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('recordLocator') - .description( - `Generates a random [record locator](https://en.wikipedia.org/wiki/Record_locator). Record locators`, - ) + .description(`Generates a random record locator.`) .action(() => { console.log(faker.airline.recordLocator()); }); diff --git a/src/commands/animal/bear.ts b/src/commands/animal/bear.ts index f4d0686..53af6c3 100644 --- a/src/commands/animal/bear.ts +++ b/src/commands/animal/bear.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bear') - .description(`Returns a random bear species.`) + .description(`Generates a random bear species.`) .action(() => { console.log(faker.animal.bear()); }); diff --git a/src/commands/animal/bird.ts b/src/commands/animal/bird.ts index 7b4c262..762899d 100644 --- a/src/commands/animal/bird.ts +++ b/src/commands/animal/bird.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bird') - .description(`Returns a random bird species.`) + .description(`Generates a random bird species.`) .action(() => { console.log(faker.animal.bird()); }); diff --git a/src/commands/animal/cat.ts b/src/commands/animal/cat.ts index fb02fb1..fb82779 100644 --- a/src/commands/animal/cat.ts +++ b/src/commands/animal/cat.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('cat') - .description(`Returns a random cat breed.`) + .description(`Generates a random cat breed.`) .action(() => { console.log(faker.animal.cat()); }); diff --git a/src/commands/animal/cetacean.ts b/src/commands/animal/cetacean.ts index d11979f..e3aaca9 100644 --- a/src/commands/animal/cetacean.ts +++ b/src/commands/animal/cetacean.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('cetacean') - .description(`Returns a random cetacean species.`) + .description(`Generates a random cetacean species.`) .action(() => { console.log(faker.animal.cetacean()); }); diff --git a/src/commands/animal/cow.ts b/src/commands/animal/cow.ts index 1c28cff..5755856 100644 --- a/src/commands/animal/cow.ts +++ b/src/commands/animal/cow.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('cow') - .description(`Returns a random cow species.`) + .description(`Generates a random cow species.`) .action(() => { console.log(faker.animal.cow()); }); diff --git a/src/commands/animal/crocodilia.ts b/src/commands/animal/crocodilia.ts index e2ffd42..c58ffd8 100644 --- a/src/commands/animal/crocodilia.ts +++ b/src/commands/animal/crocodilia.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('crocodilia') - .description(`Returns a random crocodilian species.`) + .description(`Generates a random crocodilian species.`) .action(() => { console.log(faker.animal.crocodilia()); }); diff --git a/src/commands/animal/dog.ts b/src/commands/animal/dog.ts index e2ce2dc..90698b7 100644 --- a/src/commands/animal/dog.ts +++ b/src/commands/animal/dog.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('dog') - .description(`Returns a random dog breed.`) + .description(`Generates a random dog breed.`) .action(() => { console.log(faker.animal.dog()); }); diff --git a/src/commands/animal/fish.ts b/src/commands/animal/fish.ts index 7030260..168bf9d 100644 --- a/src/commands/animal/fish.ts +++ b/src/commands/animal/fish.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('fish') - .description(`Returns a random fish species.`) + .description(`Generates a random fish species.`) .action(() => { console.log(faker.animal.fish()); }); diff --git a/src/commands/animal/horse.ts b/src/commands/animal/horse.ts index 185f2f0..072647d 100644 --- a/src/commands/animal/horse.ts +++ b/src/commands/animal/horse.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('horse') - .description(`Returns a random horse breed.`) + .description(`Generates a random horse breed.`) .action(() => { console.log(faker.animal.horse()); }); diff --git a/src/commands/animal/insect.ts b/src/commands/animal/insect.ts index 8ca8f61..e4d0ce1 100644 --- a/src/commands/animal/insect.ts +++ b/src/commands/animal/insect.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('insect') - .description(`Returns a random insect species.`) + .description(`Generates a random insect species.`) .action(() => { console.log(faker.animal.insect()); }); diff --git a/src/commands/animal/lion.ts b/src/commands/animal/lion.ts index 367c132..c96dd65 100644 --- a/src/commands/animal/lion.ts +++ b/src/commands/animal/lion.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('lion') - .description(`Returns a random lion species.`) + .description(`Generates a random lion species.`) .action(() => { console.log(faker.animal.lion()); }); diff --git a/src/commands/animal/rabbit.ts b/src/commands/animal/rabbit.ts index f9b9fb6..949a022 100644 --- a/src/commands/animal/rabbit.ts +++ b/src/commands/animal/rabbit.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('rabbit') - .description(`Returns a random rabbit species.`) + .description(`Generates a random rabbit species.`) .action(() => { console.log(faker.animal.rabbit()); }); diff --git a/src/commands/animal/rodent.ts b/src/commands/animal/rodent.ts index 6cef273..fc7eb62 100644 --- a/src/commands/animal/rodent.ts +++ b/src/commands/animal/rodent.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('rodent') - .description(`Returns a random rodent breed.`) + .description(`Generates a random rodent breed.`) .action(() => { console.log(faker.animal.rodent()); }); diff --git a/src/commands/animal/snake.ts b/src/commands/animal/snake.ts index 625188f..30671ca 100644 --- a/src/commands/animal/snake.ts +++ b/src/commands/animal/snake.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('snake') - .description(`Returns a random snake species.`) + .description(`Generates a random snake species.`) .action(() => { console.log(faker.animal.snake()); }); diff --git a/src/commands/animal/type.ts b/src/commands/animal/type.ts index d98745b..58bef27 100644 --- a/src/commands/animal/type.ts +++ b/src/commands/animal/type.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('type') - .description(`Returns a random animal type.`) + .description(`Generates a random animal type.`) .action(() => { console.log(faker.animal.type()); }); diff --git a/src/commands/color/cmyk.ts b/src/commands/color/cmyk.ts index 65aa6a2..5fa27d0 100644 --- a/src/commands/color/cmyk.ts +++ b/src/commands/color/cmyk.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('cmyk') - .description(`Returns a CMYK color.`) + .description(`Generates a CMYK color.`) .action(() => { console.log(faker.color.cmyk()); }); diff --git a/src/commands/color/colorByCSSColorSpace.ts b/src/commands/color/colorByCSSColorSpace.ts index 9b6c730..ca1625b 100644 --- a/src/commands/color/colorByCSSColorSpace.ts +++ b/src/commands/color/colorByCSSColorSpace.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('colorByCSSColorSpace') - .description(`Returns a random color based on CSS color space specified.`) + .description(`Generates a random color based on CSS color space specified.`) .action(() => { console.log(faker.color.colorByCSSColorSpace()); }); diff --git a/src/commands/color/cssSupportedFunction.ts b/src/commands/color/cssSupportedFunction.ts index 1112ce7..1457267 100644 --- a/src/commands/color/cssSupportedFunction.ts +++ b/src/commands/color/cssSupportedFunction.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('cssSupportedFunction') - .description(`Returns a random css supported color function name.`) + .description(`Generates a random css supported color function name.`) .action(() => { console.log(faker.color.cssSupportedFunction()); }); diff --git a/src/commands/color/cssSupportedSpace.ts b/src/commands/color/cssSupportedSpace.ts index f1bfbea..009c89b 100644 --- a/src/commands/color/cssSupportedSpace.ts +++ b/src/commands/color/cssSupportedSpace.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('cssSupportedSpace') - .description(`Returns a random css supported color space name.`) + .description(`Generates a random css supported color space name.`) .action(() => { console.log(faker.color.cssSupportedSpace()); }); diff --git a/src/commands/color/hsl.ts b/src/commands/color/hsl.ts index 135b431..058345e 100644 --- a/src/commands/color/hsl.ts +++ b/src/commands/color/hsl.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('hsl') - .description(`Returns an HSL color.`) + .description(`Generates an HSL color.`) .action(() => { console.log(faker.color.hsl()); }); diff --git a/src/commands/color/human.ts b/src/commands/color/human.ts index cc6cfc1..2f33f33 100644 --- a/src/commands/color/human.ts +++ b/src/commands/color/human.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('human') - .description(`Returns a random human readable color name.`) + .description(`Generates a random human readable color name.`) .action(() => { console.log(faker.color.human()); }); diff --git a/src/commands/color/hwb.ts b/src/commands/color/hwb.ts index 6296b39..0754596 100644 --- a/src/commands/color/hwb.ts +++ b/src/commands/color/hwb.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('hwb') - .description(`Returns an HWB color.`) + .description(`Generates an HWB color.`) .action(() => { console.log(faker.color.hwb()); }); diff --git a/src/commands/color/lab.ts b/src/commands/color/lab.ts index f25f030..f6838d4 100644 --- a/src/commands/color/lab.ts +++ b/src/commands/color/lab.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('lab') - .description(`Returns a LAB (CIELAB) color.`) + .description(`Generates a LAB (CIELAB) color.`) .action(() => { console.log(faker.color.lab()); }); diff --git a/src/commands/color/lch.ts b/src/commands/color/lch.ts index 7b9a612..6713b46 100644 --- a/src/commands/color/lch.ts +++ b/src/commands/color/lch.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('lch') - .description(`Returns an LCH color. Even though upper bound of`) + .description(`Generates an LCH color. Even though upper bound of`) .action(() => { console.log(faker.color.lch()); }); diff --git a/src/commands/color/rgb.ts b/src/commands/color/rgb.ts index e9fbc7b..a63ddac 100644 --- a/src/commands/color/rgb.ts +++ b/src/commands/color/rgb.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('rgb') - .description(`Returns an RGB color.`) + .description(`Generates an RGB color.`) .action(() => { console.log(faker.color.rgb()); }); diff --git a/src/commands/color/space.ts b/src/commands/color/space.ts index 1750e63..78813e5 100644 --- a/src/commands/color/space.ts +++ b/src/commands/color/space.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('space') .description( - `Returns a random color space name from the worldwide accepted color spaces.`, + `Generates a random color space name from the worldwide accepted color spaces.`, ) .action(() => { console.log(faker.color.space()); diff --git a/src/commands/commerce/department.ts b/src/commands/commerce/department.ts index 6640d16..a19a16b 100644 --- a/src/commands/commerce/department.ts +++ b/src/commands/commerce/department.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('department') - .description(`Returns a department inside a shop.`) + .description(`Generates a department inside a shop.`) .action(() => { console.log(faker.commerce.department()); }); diff --git a/src/commands/commerce/price.ts b/src/commands/commerce/price.ts index 9973ca8..2f6fd03 100644 --- a/src/commands/commerce/price.ts +++ b/src/commands/commerce/price.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('price') - .description(`Generates a price between min and max (inclusive).`) + .description(`Generates a price.`) .action(() => { console.log(faker.commerce.price()); }); diff --git a/src/commands/commerce/product.ts b/src/commands/commerce/product.ts index 77e6632..efb98ea 100644 --- a/src/commands/commerce/product.ts +++ b/src/commands/commerce/product.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('product') - .description(`Returns a short product name.`) + .description(`Generates a short product name.`) .action(() => { console.log(faker.commerce.product()); }); diff --git a/src/commands/commerce/productAdjective.ts b/src/commands/commerce/productAdjective.ts index 94ed199..f63ca33 100644 --- a/src/commands/commerce/productAdjective.ts +++ b/src/commands/commerce/productAdjective.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('productAdjective') - .description(`Returns an adjective describing a product.`) + .description(`Generates an adjective describing a product.`) .action(() => { console.log(faker.commerce.productAdjective()); }); diff --git a/src/commands/commerce/productDescription.ts b/src/commands/commerce/productDescription.ts index 313e73a..92b3e85 100644 --- a/src/commands/commerce/productDescription.ts +++ b/src/commands/commerce/productDescription.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('productDescription') - .description(`Returns a product description.`) + .description(`Generates a product description.`) .action(() => { console.log(faker.commerce.productDescription()); }); diff --git a/src/commands/commerce/productMaterial.ts b/src/commands/commerce/productMaterial.ts index 4054d4d..12d10af 100644 --- a/src/commands/commerce/productMaterial.ts +++ b/src/commands/commerce/productMaterial.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('productMaterial') - .description(`Returns a material of a product.`) + .description(`Generates a material of a product.`) .action(() => { console.log(faker.commerce.productMaterial()); }); diff --git a/src/commands/company/bsAdjective.ts b/src/commands/company/bsAdjective.ts index 4f64323..778e195 100644 --- a/src/commands/company/bsAdjective.ts +++ b/src/commands/company/bsAdjective.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bsAdjective') - .description(`Returns a random company bs adjective.`) + .description(`Generates a random company bs adjective.`) .action(() => { console.log(faker.company.bsAdjective()); }); diff --git a/src/commands/company/bsBuzz.ts b/src/commands/company/bsBuzz.ts index d07023e..1f6072e 100644 --- a/src/commands/company/bsBuzz.ts +++ b/src/commands/company/bsBuzz.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bsBuzz') - .description(`Returns a random company bs buzz word.`) + .description(`Generates a random company bs buzz word.`) .action(() => { console.log(faker.company.bsBuzz()); }); diff --git a/src/commands/company/bsNoun.ts b/src/commands/company/bsNoun.ts index 23a3cea..a7e23d3 100644 --- a/src/commands/company/bsNoun.ts +++ b/src/commands/company/bsNoun.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bsNoun') - .description(`Returns a random company bs noun.`) + .description(`Generates a random company bs noun.`) .action(() => { console.log(faker.company.bsNoun()); }); diff --git a/src/commands/company/buzzAdjective.ts b/src/commands/company/buzzAdjective.ts index a03ec1d..0791aec 100644 --- a/src/commands/company/buzzAdjective.ts +++ b/src/commands/company/buzzAdjective.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('buzzAdjective') .description( - `Returns a random buzz adjective that can be used to demonstrate data being viewed by a manager.`, + `Generates a random buzz adjective that can be used to demonstrate data being viewed by a manager.`, ) .action(() => { console.log(faker.company.buzzAdjective()); diff --git a/src/commands/company/buzzNoun.ts b/src/commands/company/buzzNoun.ts index 8b3b104..8e2cdc8 100644 --- a/src/commands/company/buzzNoun.ts +++ b/src/commands/company/buzzNoun.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('buzzNoun') .description( - `Returns a random buzz noun that can be used to demonstrate data being viewed by a manager.`, + `Generates a random buzz noun that can be used to demonstrate data being viewed by a manager.`, ) .action(() => { console.log(faker.company.buzzNoun()); diff --git a/src/commands/company/buzzVerb.ts b/src/commands/company/buzzVerb.ts index 8d3e52a..2cc602d 100644 --- a/src/commands/company/buzzVerb.ts +++ b/src/commands/company/buzzVerb.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('buzzVerb') .description( - `Returns a random buzz verb that can be used to demonstrate data being viewed by a manager.`, + `Generates a random buzz verb that can be used to demonstrate data being viewed by a manager.`, ) .action(() => { console.log(faker.company.buzzVerb()); diff --git a/src/commands/company/catchPhraseAdjective.ts b/src/commands/company/catchPhraseAdjective.ts index 6f1e9f1..8d86bb7 100644 --- a/src/commands/company/catchPhraseAdjective.ts +++ b/src/commands/company/catchPhraseAdjective.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('catchPhraseAdjective') .description( - `Returns a random catch phrase adjective that can be displayed to an end user..`, + `Generates a random catch phrase adjective that can be displayed to an end user.`, ) .action(() => { console.log(faker.company.catchPhraseAdjective()); diff --git a/src/commands/company/catchPhraseDescriptor.ts b/src/commands/company/catchPhraseDescriptor.ts index d61a06d..c4903b9 100644 --- a/src/commands/company/catchPhraseDescriptor.ts +++ b/src/commands/company/catchPhraseDescriptor.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('catchPhraseDescriptor') .description( - `Returns a random catch phrase descriptor that can be displayed to an end user..`, + `Generates a random catch phrase descriptor that can be displayed to an end user.`, ) .action(() => { console.log(faker.company.catchPhraseDescriptor()); diff --git a/src/commands/company/catchPhraseNoun.ts b/src/commands/company/catchPhraseNoun.ts index 3f0dce3..b2dd800 100644 --- a/src/commands/company/catchPhraseNoun.ts +++ b/src/commands/company/catchPhraseNoun.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('catchPhraseNoun') .description( - `Returns a random catch phrase noun that can be displayed to an end user..`, + `Generates a random catch phrase noun that can be displayed to an end user.`, ) .action(() => { console.log(faker.company.catchPhraseNoun()); diff --git a/src/commands/company/companySuffix.ts b/src/commands/company/companySuffix.ts index 376bdc7..c0273b4 100644 --- a/src/commands/company/companySuffix.ts +++ b/src/commands/company/companySuffix.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('companySuffix') - .description(`Returns a random company suffix.`) + .description(`Generates a random company suffix.`) .action(() => { console.log(faker.company.companySuffix()); }); diff --git a/src/commands/company/suffixes.ts b/src/commands/company/suffixes.ts index b515403..4754dd0 100644 --- a/src/commands/company/suffixes.ts +++ b/src/commands/company/suffixes.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('suffixes') - .description(`Returns an array with possible company name suffixes.`) + .description(`Generates an array with possible company name suffixes.`) .action(() => { console.log(faker.company.suffixes()); }); diff --git a/src/commands/database/collation.ts b/src/commands/database/collation.ts index b2634b5..835a601 100644 --- a/src/commands/database/collation.ts +++ b/src/commands/database/collation.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('collation') - .description(`Returns a random database collation.`) + .description(`Generates a random database collation.`) .action(() => { console.log(faker.database.collation()); }); diff --git a/src/commands/database/column.ts b/src/commands/database/column.ts index b444f07..5bcbb8d 100644 --- a/src/commands/database/column.ts +++ b/src/commands/database/column.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('column') - .description(`Returns a random database column name.`) + .description(`Generates a random database column name.`) .action(() => { console.log(faker.database.column()); }); diff --git a/src/commands/database/engine.ts b/src/commands/database/engine.ts index 7657015..e3450ed 100644 --- a/src/commands/database/engine.ts +++ b/src/commands/database/engine.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('engine') - .description(`Returns a random database engine.`) + .description(`Generates a random database engine.`) .action(() => { console.log(faker.database.engine()); }); diff --git a/src/commands/database/mongodbObjectId.ts b/src/commands/database/mongodbObjectId.ts index 78254db..94b7ce3 100644 --- a/src/commands/database/mongodbObjectId.ts +++ b/src/commands/database/mongodbObjectId.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('mongodbObjectId') - .description( - `Returns a MongoDB [ObjectId](https://docs.mongodb.com/manual/reference/method/ObjectId/) string.`, - ) + .description(`Generates a MongoDB ObjectId string.`) .action(() => { console.log(faker.database.mongodbObjectId()); }); diff --git a/src/commands/database/type.ts b/src/commands/database/type.ts index df7a7df..ec61511 100644 --- a/src/commands/database/type.ts +++ b/src/commands/database/type.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('type') - .description(`Returns a random database column type.`) + .description(`Generates a random database column type.`) .action(() => { console.log(faker.database.type()); }); diff --git a/src/commands/datatype/array.ts b/src/commands/datatype/array.ts index f895cd8..eb37576 100644 --- a/src/commands/datatype/array.ts +++ b/src/commands/datatype/array.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('array') - .description(`Returns an array with random strings and numbers.`) + .description(`Generates an array with random strings and numbers.`) .action(() => { console.log(faker.datatype.array()); }); diff --git a/src/commands/datatype/bigInt.ts b/src/commands/datatype/bigInt.ts index 876cd12..6a3e5c6 100644 --- a/src/commands/datatype/bigInt.ts +++ b/src/commands/datatype/bigInt.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bigInt') - .description( - `Returns a [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#bigint_type) number.`, - ) + .description(`Generates a BigInt number.`) .action(() => { console.log(faker.datatype.bigInt()); }); diff --git a/src/commands/datatype/boolean.ts b/src/commands/datatype/boolean.ts index cae6ef5..2a17ac7 100644 --- a/src/commands/datatype/boolean.ts +++ b/src/commands/datatype/boolean.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('boolean') - .description(`Returns the boolean value true or false.`) + .description(`Generates the boolean value true or false.`) .action(() => { console.log(faker.datatype.boolean()); }); diff --git a/src/commands/datatype/datetime.ts b/src/commands/datatype/datetime.ts index 4496df4..f3ba187 100644 --- a/src/commands/datatype/datetime.ts +++ b/src/commands/datatype/datetime.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('datetime') .description( - `Returns a Date object using a random number of milliseconds since`, + `Generates a Date object using a random number of milliseconds since`, ) .action(() => { console.log(faker.datatype.datetime()); diff --git a/src/commands/datatype/float.ts b/src/commands/datatype/float.ts index 91eec81..f557f5f 100644 --- a/src/commands/datatype/float.ts +++ b/src/commands/datatype/float.ts @@ -3,10 +3,10 @@ import { faker } from '@faker-js/faker'; const command = new Command('float') .description( - `Returns a single random floating-point number for the given precision or range and precision.`, + `Generates a single random floating-point number between zero and 99999.`, ) .action(() => { - console.log(faker.datatype.float()); + console.log(faker.datatype.float({})); }); export default command; diff --git a/src/commands/datatype/hexadecimal.ts b/src/commands/datatype/hexadecimal.ts index 4d0fafc..cd09da2 100644 --- a/src/commands/datatype/hexadecimal.ts +++ b/src/commands/datatype/hexadecimal.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('hexadecimal') .description( - `Returns a [hexadecimal](https://en.wikipedia.org/wiki/Hexadecimal) number.`, + `Generates a [hexadecimal](https://en.wikipedia.org/wiki/Hexadecimal) number.`, ) .action(() => { console.log(faker.datatype.hexadecimal()); diff --git a/src/commands/datatype/json.ts b/src/commands/datatype/json.ts index 2a89b3a..5c939e5 100644 --- a/src/commands/datatype/json.ts +++ b/src/commands/datatype/json.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('json') .description( - `Returns a string representing JSON object with 7 pre-defined properties.`, + `Generates a string representing JSON object with 7 pre-defined properties.`, ) .action(() => { console.log(faker.datatype.json()); diff --git a/src/commands/datatype/number.ts b/src/commands/datatype/number.ts index bf77b4f..5d59de6 100644 --- a/src/commands/datatype/number.ts +++ b/src/commands/datatype/number.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('number') - .description( - `Returns a single random number between zero and the given max value or the given range with the specified precision.`, - ) + .description(`Generates a single random number between zero and 99999.`) .action(() => { console.log(faker.datatype.number()); }); diff --git a/src/commands/datatype/string.ts b/src/commands/datatype/string.ts index ee2e1bf..892645e 100644 --- a/src/commands/datatype/string.ts +++ b/src/commands/datatype/string.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('string') .description( - `Returns a string containing UTF-16 chars between 33 and 125 (\`!\` to \`}\`).`, + `Generates a string containing UTF-16 chars between 33 and 125 (\`!\` to \`}\`).`, ) .action(() => { console.log(faker.datatype.string()); diff --git a/src/commands/datatype/uuid.ts b/src/commands/datatype/uuid.ts index 4702232..5b3ec32 100644 --- a/src/commands/datatype/uuid.ts +++ b/src/commands/datatype/uuid.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('uuid') - .description( - `Returns a UUID v4 ([Universally Unique Identifier](https://en.wikipedia.org/wiki/Universally_unique_identifier)).`, - ) + .description(`Generates a UUID v4 (Universally Unique Identifier).`) .action(() => { console.log(faker.datatype.uuid()); }); diff --git a/src/commands/date/birthdate.ts b/src/commands/date/birthdate.ts index 3d30461..2a74be3 100644 --- a/src/commands/date/birthdate.ts +++ b/src/commands/date/birthdate.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('birthdate') - .description(`Returns a random birthdate.`) + .description(`Generates a random birthdate.`) .action(() => { console.log(faker.date.birthdate()); }); diff --git a/src/commands/date/month.ts b/src/commands/date/month.ts index 279b006..5dd62be 100644 --- a/src/commands/date/month.ts +++ b/src/commands/date/month.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('month') - .description(`Returns a random name of a month.`) + .description(`Generates a random name of a month.`) .action(() => { console.log(faker.date.month()); }); diff --git a/src/commands/date/weekday.ts b/src/commands/date/weekday.ts index c812c9f..9d9a164 100644 --- a/src/commands/date/weekday.ts +++ b/src/commands/date/weekday.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('weekday') - .description(`Returns a random day of the week.`) + .description(`Generates a random day of the week.`) .action(() => { console.log(faker.date.weekday()); }); diff --git a/src/commands/finance/bic.ts b/src/commands/finance/bic.ts index dc2068c..1f5e2dc 100644 --- a/src/commands/finance/bic.ts +++ b/src/commands/finance/bic.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('bic') .description( - `Generates a random SWIFT/BIC code based on the [ISO-9362](https://en.wikipedia.org/wiki/ISO_9362) format.`, + `Generates a random SWIFT/BIC code based on the ISO-9362 format.`, ) .action(() => { console.log(faker.finance.bic()); diff --git a/src/commands/finance/creditCardIssuer.ts b/src/commands/finance/creditCardIssuer.ts index 3557f19..b3129ee 100644 --- a/src/commands/finance/creditCardIssuer.ts +++ b/src/commands/finance/creditCardIssuer.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('creditCardIssuer') - .description(`Returns a random credit card issuer.`) + .description(`Generates a random credit card issuer.`) .action(() => { console.log(faker.finance.creditCardIssuer()); }); diff --git a/src/commands/finance/currency.ts b/src/commands/finance/currency.ts index 1fd5c61..d4fa019 100644 --- a/src/commands/finance/currency.ts +++ b/src/commands/finance/currency.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('currency') .description( - `Returns a random currency object, containing \`code\`, \`name \`and \`symbol\` properties.`, + `Generates a random currency object, containing \`code\`, \`name \`and \`symbol\` properties.`, ) .action(() => { console.log(faker.finance.currency()); diff --git a/src/commands/finance/currencyCode.ts b/src/commands/finance/currencyCode.ts index 1acdc3b..dd5ef7a 100644 --- a/src/commands/finance/currencyCode.ts +++ b/src/commands/finance/currencyCode.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('currencyCode') - .description(`Returns a random currency code.`) + .description(`Generates a random currency code.`) .action(() => { console.log(faker.finance.currencyCode()); }); diff --git a/src/commands/finance/currencyName.ts b/src/commands/finance/currencyName.ts index c8bbe22..fc9d336 100644 --- a/src/commands/finance/currencyName.ts +++ b/src/commands/finance/currencyName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('currencyName') - .description(`Returns a random currency name.`) + .description(`Generates a random currency name.`) .action(() => { console.log(faker.finance.currencyName()); }); diff --git a/src/commands/finance/currencySymbol.ts b/src/commands/finance/currencySymbol.ts index 0d987c1..3c8a204 100644 --- a/src/commands/finance/currencySymbol.ts +++ b/src/commands/finance/currencySymbol.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('currencySymbol') - .description(`Returns a random currency symbol.`) + .description(`Generates a random currency symbol.`) .action(() => { console.log(faker.finance.currencySymbol()); }); diff --git a/src/commands/finance/ethereumAddress.ts b/src/commands/finance/ethereumAddress.ts index b393f93..0090f1a 100644 --- a/src/commands/finance/ethereumAddress.ts +++ b/src/commands/finance/ethereumAddress.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('ethereumAddress') - .description(`Creates a random, non-checksum Ethereum address.`) + .description(`Generates a random, non-checksum Ethereum address.`) .action(() => { console.log(faker.finance.ethereumAddress()); }); diff --git a/src/commands/finance/transactionType.ts b/src/commands/finance/transactionType.ts index 818dd9e..a585c26 100644 --- a/src/commands/finance/transactionType.ts +++ b/src/commands/finance/transactionType.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('transactionType') - .description(`Returns a random transaction type.`) + .description(`Generates a random transaction type.`) .action(() => { console.log(faker.finance.transactionType()); }); diff --git a/src/commands/hacker/abbreviation.ts b/src/commands/hacker/abbreviation.ts index a610e8f..94f5610 100644 --- a/src/commands/hacker/abbreviation.ts +++ b/src/commands/hacker/abbreviation.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('abbreviation') - .description(`Returns a random hacker/IT abbreviation.`) + .description(`Generates a random hacker/IT abbreviation.`) .action(() => { console.log(faker.hacker.abbreviation()); }); diff --git a/src/commands/hacker/adjective.ts b/src/commands/hacker/adjective.ts index 3d77284..7ed23b0 100644 --- a/src/commands/hacker/adjective.ts +++ b/src/commands/hacker/adjective.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('adjective') - .description(`Returns a random hacker/IT adjective.`) + .description(`Generates a random hacker/IT adjective.`) .action(() => { console.log(faker.hacker.adjective()); }); diff --git a/src/commands/hacker/ingverb.ts b/src/commands/hacker/ingverb.ts index e58b969..6f03fee 100644 --- a/src/commands/hacker/ingverb.ts +++ b/src/commands/hacker/ingverb.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('ingverb') .description( - `Returns a random hacker/IT verb for continuous actions (en: ing suffix; e.g. hacking).`, + `Generates a random hacker/IT verb for continuous actions (en: ing suffix; e.g. hacking).`, ) .action(() => { console.log(faker.hacker.ingverb()); diff --git a/src/commands/hacker/noun.ts b/src/commands/hacker/noun.ts index 83fac82..46763c9 100644 --- a/src/commands/hacker/noun.ts +++ b/src/commands/hacker/noun.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('noun') - .description(`Returns a random hacker/IT noun.`) + .description(`Generates a random hacker/IT noun.`) .action(() => { console.log(faker.hacker.noun()); }); diff --git a/src/commands/hacker/verb.ts b/src/commands/hacker/verb.ts index bdbe9f3..bfe01ed 100644 --- a/src/commands/hacker/verb.ts +++ b/src/commands/hacker/verb.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('verb') - .description(`Returns a random hacker/IT verb.`) + .description(`Generates a random hacker/IT verb.`) .action(() => { console.log(faker.hacker.verb()); }); diff --git a/src/commands/internet/avatar.ts b/src/commands/internet/avatar.ts index 9670b07..0470d8b 100644 --- a/src/commands/internet/avatar.ts +++ b/src/commands/internet/avatar.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('avatar') - .description(`Returns a random avatar url.`) + .description(`Generates a random avatar url.`) .action(() => { console.log(faker.internet.avatar()); }); diff --git a/src/commands/internet/domainSuffix.ts b/src/commands/internet/domainSuffix.ts index 6044dad..10bdc42 100644 --- a/src/commands/internet/domainSuffix.ts +++ b/src/commands/internet/domainSuffix.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('domainSuffix') - .description(`Returns a random domain suffix.`) + .description(`Generates a random domain suffix.`) .action(() => { console.log(faker.internet.domainSuffix()); }); diff --git a/src/commands/internet/email.ts b/src/commands/internet/email.ts index 05ef614..e932c04 100644 --- a/src/commands/internet/email.ts +++ b/src/commands/internet/email.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('email') - .description( - `Generates an email address using the given person's name as base.`, - ) + .description(`Generates an email address.`) .action(() => { console.log(faker.internet.email()); }); diff --git a/src/commands/internet/exampleEmail.ts b/src/commands/internet/exampleEmail.ts index acbadd3..c74b4fd 100644 --- a/src/commands/internet/exampleEmail.ts +++ b/src/commands/internet/exampleEmail.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('exampleEmail') - .description( - `Generates an email address using an example mail provider using the given person's name as base.`, - ) + .description(`Generates an email address using an example mail provider.`) .action(() => { console.log(faker.internet.exampleEmail()); }); diff --git a/src/commands/internet/httpMethod.ts b/src/commands/internet/httpMethod.ts index 1c13803..c854fb4 100644 --- a/src/commands/internet/httpMethod.ts +++ b/src/commands/internet/httpMethod.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('httpMethod') - .description(`Returns a random http method.`) + .description(`Generates a random http method.`) .action(() => { console.log(faker.internet.httpMethod()); }); diff --git a/src/commands/internet/protocol.ts b/src/commands/internet/protocol.ts index 2a75f7c..5a3c353 100644 --- a/src/commands/internet/protocol.ts +++ b/src/commands/internet/protocol.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('protocol') - .description(`Returns a random web protocol. Either \`http\` or \`https\`.`) + .description(`Generates a random web protocol. Either \`http\` or \`https\`.`) .action(() => { console.log(faker.internet.protocol()); }); diff --git a/src/commands/internet/userName.ts b/src/commands/internet/userName.ts index f9f54b3..7ee0fe7 100644 --- a/src/commands/internet/userName.ts +++ b/src/commands/internet/userName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('userName') - .description(`Generates a username using the given person's name as base.`) + .description(`Generates a username.`) .action(() => { console.log(faker.internet.userName()); }); diff --git a/src/commands/location/cardinalDirection.ts b/src/commands/location/cardinalDirection.ts index 329775a..8dc4ecf 100644 --- a/src/commands/location/cardinalDirection.ts +++ b/src/commands/location/cardinalDirection.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('cardinalDirection') .description( - `Returns a random cardinal direction (north, east, south, west).`, + `Generates a random cardinal direction (north, east, south, west).`, ) .action(() => { console.log(faker.location.cardinalDirection()); diff --git a/src/commands/location/cityName.ts b/src/commands/location/cityName.ts index 3f525f1..1798f95 100644 --- a/src/commands/location/cityName.ts +++ b/src/commands/location/cityName.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('cityName') .description( - `Returns a random city name from a list of real cities for the locale.`, + `Generates a random city name from a list of real cities for the locale.`, ) .action(() => { console.log(faker.location.cityName()); diff --git a/src/commands/location/country.ts b/src/commands/location/country.ts index 5d732b5..11958f1 100644 --- a/src/commands/location/country.ts +++ b/src/commands/location/country.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('country') - .description(`Returns a random country name.`) + .description(`Generates a random country name.`) .action(() => { console.log(faker.location.country()); }); diff --git a/src/commands/location/countryCode.ts b/src/commands/location/countryCode.ts index 9a9b850..db9b0ea 100644 --- a/src/commands/location/countryCode.ts +++ b/src/commands/location/countryCode.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('countryCode') - .description( - `Returns a random [ISO_3166-1](https://en.wikipedia.org/wiki/ISO_3166-1) country code.`, - ) + .description(`Generates a random ISO_3166-1 country code.`) .action(() => { console.log(faker.location.countryCode()); }); diff --git a/src/commands/location/county.ts b/src/commands/location/county.ts index 0a12a8b..c73dbf3 100644 --- a/src/commands/location/county.ts +++ b/src/commands/location/county.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('county') .description( - `Returns a random localized county, or other equivalent second-level administrative entity for the locale's country such as a district or department.`, + `Generates a random localized county, or other equivalent second-level administrative entity for the locale's country such as a district or department.`, ) .action(() => { console.log(faker.location.county()); diff --git a/src/commands/location/direction.ts b/src/commands/location/direction.ts index eb66fb3..41bf03d 100644 --- a/src/commands/location/direction.ts +++ b/src/commands/location/direction.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('direction') .description( - `Returns a random direction (cardinal and ordinal; northwest, east, etc).`, + `Generates a random direction (cardinal and ordinal; northwest, east, etc).`, ) .action(() => { console.log(faker.location.direction()); diff --git a/src/commands/location/ordinalDirection.ts b/src/commands/location/ordinalDirection.ts index 6e9731d..a2d6152 100644 --- a/src/commands/location/ordinalDirection.ts +++ b/src/commands/location/ordinalDirection.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('ordinalDirection') .description( - `Returns a random ordinal direction (northwest, southeast, etc).`, + `Generates a random ordinal direction (northwest, southeast, etc).`, ) .action(() => { console.log(faker.location.ordinalDirection()); diff --git a/src/commands/location/secondaryAddress.ts b/src/commands/location/secondaryAddress.ts index 8c1fb24..c30c104 100644 --- a/src/commands/location/secondaryAddress.ts +++ b/src/commands/location/secondaryAddress.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('secondaryAddress') - .description( - `Generates a random localized secondary address. This refers to a specific location at a given address`, - ) + .description(`Generates a random localized secondary address.`) .action(() => { console.log(faker.location.secondaryAddress()); }); diff --git a/src/commands/location/state.ts b/src/commands/location/state.ts index 3dbd8b0..b41044c 100644 --- a/src/commands/location/state.ts +++ b/src/commands/location/state.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('state') .description( - `Returns a random localized state, or other equivalent first-level administrative entity for the locale's country such as a province or region.`, + `Generates a random localized state, or other equivalent first-level administrative entity for the locale's country such as a province or region.`, ) .action(() => { console.log(faker.location.state()); diff --git a/src/commands/location/stateAbbr.ts b/src/commands/location/stateAbbr.ts index 9f94e04..d862aeb 100644 --- a/src/commands/location/stateAbbr.ts +++ b/src/commands/location/stateAbbr.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('stateAbbr') .description( - `Returns a random localized state's abbreviated name from this country.`, + `Generates a random localized state's abbreviated name from this country.`, ) .action(() => { console.log(faker.location.stateAbbr()); diff --git a/src/commands/location/streetName.ts b/src/commands/location/streetName.ts index d086a24..7fef3c4 100644 --- a/src/commands/location/streetName.ts +++ b/src/commands/location/streetName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('streetName') - .description(`Returns a random localized street name.`) + .description(`Generates a random localized street name.`) .action(() => { console.log(faker.location.streetName()); }); diff --git a/src/commands/location/timeZone.ts b/src/commands/location/timeZone.ts index 7035bb0..f483f4a 100644 --- a/src/commands/location/timeZone.ts +++ b/src/commands/location/timeZone.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('timeZone') - .description(`Returns a random time zone.`) + .description(`Generates a random time zone.`) .action(() => { console.log(faker.location.timeZone()); }); diff --git a/src/commands/location/zipCode.ts b/src/commands/location/zipCode.ts index 18e5d8c..55d005b 100644 --- a/src/commands/location/zipCode.ts +++ b/src/commands/location/zipCode.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('zipCode') - .description( - `Generates random zip code from specified format. If format is not specified,`, - ) + .description(`Generates random zip code from specified format.`) .action(() => { console.log(faker.location.zipCode()); }); diff --git a/src/commands/lorem/lines.ts b/src/commands/lorem/lines.ts index ffc059c..dd67ffe 100644 --- a/src/commands/lorem/lines.ts +++ b/src/commands/lorem/lines.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('lines') .description( - `Generates the given number lines of lorem separated by \`'\n'\`.`, + `Generates the given number lines of lorem separated by \`'\\n'\`.`, ) .action(() => { console.log(faker.lorem.lines()); diff --git a/src/commands/music/genre.ts b/src/commands/music/genre.ts index 06521df..756c677 100644 --- a/src/commands/music/genre.ts +++ b/src/commands/music/genre.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('genre') - .description(`Returns a random music genre.`) + .description(`Generates a random music genre.`) .action(() => { console.log(faker.music.genre()); }); diff --git a/src/commands/music/songName.ts b/src/commands/music/songName.ts index f5139c6..bad4d20 100644 --- a/src/commands/music/songName.ts +++ b/src/commands/music/songName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('songName') - .description(`Returns a random song name.`) + .description(`Generates a random song name.`) .action(() => { console.log(faker.music.songName()); }); diff --git a/src/commands/number/bigInt.ts b/src/commands/number/bigInt.ts index 3009db5..9cefb03 100644 --- a/src/commands/number/bigInt.ts +++ b/src/commands/number/bigInt.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bigInt') - .description( - `Returns a [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#bigint_type) number.`, - ) + .description(`Generates a BigInt number.`) .action(() => { console.log(faker.number.bigInt()); }); diff --git a/src/commands/number/binary.ts b/src/commands/number/binary.ts index a950215..6634cd6 100644 --- a/src/commands/number/binary.ts +++ b/src/commands/number/binary.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('binary') - .description( - `Returns a [binary](https://en.wikipedia.org/wiki/Binary_number) number.`, - ) + .description(`Generates a binary number.`) .action(() => { console.log(faker.number.binary()); }); diff --git a/src/commands/number/float.ts b/src/commands/number/float.ts index c1e8a22..396ab72 100644 --- a/src/commands/number/float.ts +++ b/src/commands/number/float.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('float') .description( - `Returns a single random floating-point number for a given precision or range and precision.`, + `Generates a single random floating-point number between zero and one.`, ) .action(() => { console.log(faker.number.float()); diff --git a/src/commands/number/hex.ts b/src/commands/number/hex.ts index 128775a..af6d9bf 100644 --- a/src/commands/number/hex.ts +++ b/src/commands/number/hex.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('hex') - .description( - `Returns a lowercase [hexadecimal](https://en.wikipedia.org/wiki/Hexadecimal) number.`, - ) + .description(`Generates a lowercase hexadecimal number.`) .action(() => { console.log(faker.number.hex()); }); diff --git a/src/commands/number/int.ts b/src/commands/number/int.ts index 1b07898..ae50162 100644 --- a/src/commands/number/int.ts +++ b/src/commands/number/int.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('int') .description( - `Returns a single random integer between zero and the given max value or the given range.`, + `Generates a single random integer between zero and \`Number.MAX_SAFE_INTEGER\`.`, ) .action(() => { console.log(faker.number.int()); diff --git a/src/commands/number/octal.ts b/src/commands/number/octal.ts index 13f577c..c063550 100644 --- a/src/commands/number/octal.ts +++ b/src/commands/number/octal.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('octal') - .description( - `Returns an [octal](https://en.wikipedia.org/wiki/Octal) number.`, - ) + .description(`Generates an octal number.`) .action(() => { console.log(faker.number.octal()); }); diff --git a/src/commands/person/bio.ts b/src/commands/person/bio.ts index 4190ca5..da4f3b0 100644 --- a/src/commands/person/bio.ts +++ b/src/commands/person/bio.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bio') - .description(`Returns a random short biography`) + .description(`Generates a random short biography`) .action(() => { console.log(faker.person.bio()); }); diff --git a/src/commands/person/firstName.ts b/src/commands/person/firstName.ts index 7c26689..f3a23b5 100644 --- a/src/commands/person/firstName.ts +++ b/src/commands/person/firstName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('firstName') - .description(`Returns a random first name.`) + .description(`Generates a random first name.`) .action(() => { console.log(faker.person.firstName()); }); diff --git a/src/commands/person/gender.ts b/src/commands/person/gender.ts index 55aecdc..5919700 100644 --- a/src/commands/person/gender.ts +++ b/src/commands/person/gender.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('gender') - .description(`Returns a random gender.`) + .description(`Generates a random gender.`) .action(() => { console.log(faker.person.gender()); }); diff --git a/src/commands/person/lastName.ts b/src/commands/person/lastName.ts index fd475a7..60ad571 100644 --- a/src/commands/person/lastName.ts +++ b/src/commands/person/lastName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('lastName') - .description(`Returns a random last name.`) + .description(`Generates a random last name.`) .action(() => { console.log(faker.person.lastName()); }); diff --git a/src/commands/person/middleName.ts b/src/commands/person/middleName.ts index fd159c3..f55d0c3 100644 --- a/src/commands/person/middleName.ts +++ b/src/commands/person/middleName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('middleName') - .description(`Returns a random middle name.`) + .description(`Generates a random middle name.`) .action(() => { console.log(faker.person.middleName()); }); diff --git a/src/commands/person/prefix.ts b/src/commands/person/prefix.ts index 560c94f..99ff6df 100644 --- a/src/commands/person/prefix.ts +++ b/src/commands/person/prefix.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('prefix') - .description(`Returns a random person prefix.`) + .description(`Generates a random person prefix.`) .action(() => { console.log(faker.person.prefix()); }); diff --git a/src/commands/person/sex.ts b/src/commands/person/sex.ts index 9e33bea..bf716e1 100644 --- a/src/commands/person/sex.ts +++ b/src/commands/person/sex.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('sex') - .description(`Returns a random sex.`) + .description(`Generates a random sex.`) .action(() => { console.log(faker.person.sex()); }); diff --git a/src/commands/person/sexType.ts b/src/commands/person/sexType.ts index 5e7ab30..5550e44 100644 --- a/src/commands/person/sexType.ts +++ b/src/commands/person/sexType.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('sexType') - .description(`Returns a random sex type.`) + .description(`Generates a random sex type.`) .action(() => { console.log(faker.person.sexType()); }); diff --git a/src/commands/person/suffix.ts b/src/commands/person/suffix.ts index 134ea4b..57991eb 100644 --- a/src/commands/person/suffix.ts +++ b/src/commands/person/suffix.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('suffix') - .description(`Returns a random person suffix.`) + .description(`Generates a random person suffix.`) .action(() => { console.log(faker.person.suffix()); }); diff --git a/src/commands/person/zodiacSign.ts b/src/commands/person/zodiacSign.ts index 7113be8..385fc0b 100644 --- a/src/commands/person/zodiacSign.ts +++ b/src/commands/person/zodiacSign.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('zodiacSign') - .description(`Returns a random zodiac sign.`) + .description(`Generates a random zodiac sign.`) .action(() => { console.log(faker.person.zodiacSign()); }); diff --git a/src/commands/science/chemicalElement.ts b/src/commands/science/chemicalElement.ts index 3e9a50f..9ef3a59 100644 --- a/src/commands/science/chemicalElement.ts +++ b/src/commands/science/chemicalElement.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('chemicalElement') - .description(`Returns a random periodic table element.`) + .description(`Generates a random periodic table element.`) .action(() => { console.log(faker.science.chemicalElement()); }); diff --git a/src/commands/science/unit.ts b/src/commands/science/unit.ts index 9db6f6c..996d566 100644 --- a/src/commands/science/unit.ts +++ b/src/commands/science/unit.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('unit') - .description(`Returns a random scientific unit.`) + .description(`Generates a random scientific unit.`) .action(() => { console.log(faker.science.unit()); }); diff --git a/src/commands/string/binary.ts b/src/commands/string/binary.ts index ea0fbc2..488f9c1 100644 --- a/src/commands/string/binary.ts +++ b/src/commands/string/binary.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('binary') - .description( - `Returns a [binary](https://en.wikipedia.org/wiki/Binary_number) string.`, - ) + .description(`Generates a binary string.`) .action(() => { console.log(faker.string.binary()); }); diff --git a/src/commands/string/hexadecimal.ts b/src/commands/string/hexadecimal.ts index 246afa3..17dce60 100644 --- a/src/commands/string/hexadecimal.ts +++ b/src/commands/string/hexadecimal.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('hexadecimal') - .description( - `Returns a [hexadecimal](https://en.wikipedia.org/wiki/Hexadecimal) string.`, - ) + .description(`Generates a hexadecimal string.`) .action(() => { console.log(faker.string.hexadecimal()); }); diff --git a/src/commands/string/nanoid.ts b/src/commands/string/nanoid.ts index 70e4e05..00ce3cd 100644 --- a/src/commands/string/nanoid.ts +++ b/src/commands/string/nanoid.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('nanoid') - .description(`Generates a [Nano ID](https://github.com/ai/nanoid).`) + .description(`Generates a Nano ID.`) .action(() => { console.log(faker.string.nanoid()); }); diff --git a/src/commands/string/octal.ts b/src/commands/string/octal.ts index 396c896..4567db4 100644 --- a/src/commands/string/octal.ts +++ b/src/commands/string/octal.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('octal') - .description( - `Returns an [octal](https://en.wikipedia.org/wiki/Octal) string.`, - ) + .description(`Generates an octal string.`) .action(() => { console.log(faker.string.octal()); }); diff --git a/src/commands/string/sample.ts b/src/commands/string/sample.ts index 72a1169..099f72f 100644 --- a/src/commands/string/sample.ts +++ b/src/commands/string/sample.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('sample') .description( - `Returns a string containing UTF-16 chars between 33 and 125 (\`!\` to \`}\`).`, + `Generates a string containing UTF-16 chars between 33 and 125 (\`!\` to \`}\`).`, ) .action(() => { console.log(faker.string.sample()); diff --git a/src/commands/string/symbol.ts b/src/commands/string/symbol.ts index 49ba57e..d30e415 100644 --- a/src/commands/string/symbol.ts +++ b/src/commands/string/symbol.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('symbol') - .description( - `Returns a string containing only special characters from the following list:`, - ) + .description(`Generates a string containing only special characters.`) .action(() => { console.log(faker.string.symbol()); }); diff --git a/src/commands/string/uuid.ts b/src/commands/string/uuid.ts index 44144f6..a6d6e2d 100644 --- a/src/commands/string/uuid.ts +++ b/src/commands/string/uuid.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('uuid') - .description( - `Returns a UUID v4 ([Universally Unique Identifier](https://en.wikipedia.org/wiki/Universally_unique_identifier)).`, - ) + .description(`Generates a UUID v4 (Universally Unique Identifier).`) .action(() => { console.log(faker.string.uuid()); }); diff --git a/src/commands/system/commonFileExt.ts b/src/commands/system/commonFileExt.ts index ae9c373..332f3c7 100644 --- a/src/commands/system/commonFileExt.ts +++ b/src/commands/system/commonFileExt.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('commonFileExt') - .description(`Returns a commonly used file extension.`) + .description(`Generates a commonly used file extension.`) .action(() => { console.log(faker.system.commonFileExt()); }); diff --git a/src/commands/system/commonFileName.ts b/src/commands/system/commonFileName.ts index ad12516..db8de38 100644 --- a/src/commands/system/commonFileName.ts +++ b/src/commands/system/commonFileName.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('commonFileName') - .description( - `Returns a random file name with a given extension or a commonly used extension.`, - ) + .description(`Generates a random file name and a commonly used extension.`) .action(() => { console.log(faker.system.commonFileName()); }); diff --git a/src/commands/system/commonFileType.ts b/src/commands/system/commonFileType.ts index 437ce65..1ac23fd 100644 --- a/src/commands/system/commonFileType.ts +++ b/src/commands/system/commonFileType.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('commonFileType') - .description(`Returns a commonly used file type.`) + .description(`Generates a commonly used file type.`) .action(() => { console.log(faker.system.commonFileType()); }); diff --git a/src/commands/system/cron.ts b/src/commands/system/cron.ts index 2497fe9..eaa86e8 100644 --- a/src/commands/system/cron.ts +++ b/src/commands/system/cron.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('cron') - .description(`Returns a random cron expression.`) + .description(`Generates a random cron expression.`) .action(() => { console.log(faker.system.cron()); }); diff --git a/src/commands/system/directoryPath.ts b/src/commands/system/directoryPath.ts index f04f6d2..87bc371 100644 --- a/src/commands/system/directoryPath.ts +++ b/src/commands/system/directoryPath.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('directoryPath') - .description(`Returns a directory path.`) + .description(`Generates a directory path.`) .action(() => { console.log(faker.system.directoryPath()); }); diff --git a/src/commands/system/fileExt.ts b/src/commands/system/fileExt.ts index 90770d2..9a68235 100644 --- a/src/commands/system/fileExt.ts +++ b/src/commands/system/fileExt.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('fileExt') - .description(`Returns a file extension.`) + .description(`Generates a file extension.`) .action(() => { console.log(faker.system.fileExt()); }); diff --git a/src/commands/system/fileName.ts b/src/commands/system/fileName.ts index b07e4ef..5118d13 100644 --- a/src/commands/system/fileName.ts +++ b/src/commands/system/fileName.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('fileName') - .description(`Returns a random file name with extension.`) + .description(`Generates a random file name with extension.`) .action(() => { console.log(faker.system.fileName()); }); diff --git a/src/commands/system/filePath.ts b/src/commands/system/filePath.ts index 3f6ad97..d2a4f9c 100644 --- a/src/commands/system/filePath.ts +++ b/src/commands/system/filePath.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('filePath') - .description(`Returns a file path.`) + .description(`Generates a file path.`) .action(() => { console.log(faker.system.filePath()); }); diff --git a/src/commands/system/fileType.ts b/src/commands/system/fileType.ts index 2649d64..626b260 100644 --- a/src/commands/system/fileType.ts +++ b/src/commands/system/fileType.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('fileType') - .description(`Returns a file type.`) + .description(`Generates a file type.`) .action(() => { console.log(faker.system.fileType()); }); diff --git a/src/commands/system/mimeType.ts b/src/commands/system/mimeType.ts index cce0c43..2ce21eb 100644 --- a/src/commands/system/mimeType.ts +++ b/src/commands/system/mimeType.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('mimeType') - .description(`Returns a mime-type.`) + .description(`Generates a mime-type.`) .action(() => { console.log(faker.system.mimeType()); }); diff --git a/src/commands/system/networkInterface.ts b/src/commands/system/networkInterface.ts index c206b2f..8c7c9ae 100644 --- a/src/commands/system/networkInterface.ts +++ b/src/commands/system/networkInterface.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('networkInterface') - .description( - `Returns a random [network interface](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/networking_guide/sec-understanding_the_predictable_network_interface_device_names).`, - ) + .description(`Generates a random network interface.`) .action(() => { console.log(faker.system.networkInterface()); }); diff --git a/src/commands/system/semver.ts b/src/commands/system/semver.ts index 3cddf66..4647acf 100644 --- a/src/commands/system/semver.ts +++ b/src/commands/system/semver.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('semver') - .description(`Returns a [semantic version](https://semver.org).`) + .description(`Generates a semantic version.`) .action(() => { console.log(faker.system.semver()); }); diff --git a/src/commands/vehicle/bicycle.ts b/src/commands/vehicle/bicycle.ts index 1085fcc..97eb9da 100644 --- a/src/commands/vehicle/bicycle.ts +++ b/src/commands/vehicle/bicycle.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('bicycle') - .description(`Returns a type of bicycle.`) + .description(`Generates a type of bicycle.`) .action(() => { console.log(faker.vehicle.bicycle()); }); diff --git a/src/commands/vehicle/color.ts b/src/commands/vehicle/color.ts index a0ea6c3..e16efc5 100644 --- a/src/commands/vehicle/color.ts +++ b/src/commands/vehicle/color.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('color') - .description(`Returns a vehicle color.`) + .description(`Generates a vehicle color.`) .action(() => { console.log(faker.vehicle.color()); }); diff --git a/src/commands/vehicle/fuel.ts b/src/commands/vehicle/fuel.ts index c59630b..4c4247c 100644 --- a/src/commands/vehicle/fuel.ts +++ b/src/commands/vehicle/fuel.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('fuel') - .description(`Returns a fuel type.`) + .description(`Generates a fuel type.`) .action(() => { console.log(faker.vehicle.fuel()); }); diff --git a/src/commands/vehicle/manufacturer.ts b/src/commands/vehicle/manufacturer.ts index 6a15c76..2041e6c 100644 --- a/src/commands/vehicle/manufacturer.ts +++ b/src/commands/vehicle/manufacturer.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('manufacturer') - .description(`Returns a manufacturer name.`) + .description(`Generates a manufacturer name.`) .action(() => { console.log(faker.vehicle.manufacturer()); }); diff --git a/src/commands/vehicle/model.ts b/src/commands/vehicle/model.ts index 5f6fb5e..2845e54 100644 --- a/src/commands/vehicle/model.ts +++ b/src/commands/vehicle/model.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('model') - .description(`Returns a vehicle model.`) + .description(`Generates a vehicle model.`) .action(() => { console.log(faker.vehicle.model()); }); diff --git a/src/commands/vehicle/type.ts b/src/commands/vehicle/type.ts index 1773c63..ab247d4 100644 --- a/src/commands/vehicle/type.ts +++ b/src/commands/vehicle/type.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('type') - .description(`Returns a vehicle type.`) + .description(`Generates a vehicle type.`) .action(() => { console.log(faker.vehicle.type()); }); diff --git a/src/commands/vehicle/vehicle.ts b/src/commands/vehicle/vehicle.ts index 68d2081..38b7b36 100644 --- a/src/commands/vehicle/vehicle.ts +++ b/src/commands/vehicle/vehicle.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('vehicle') - .description(`Returns a random vehicle.`) + .description(`Generates a random vehicle.`) .action(() => { console.log(faker.vehicle.vehicle()); }); diff --git a/src/commands/vehicle/vin.ts b/src/commands/vehicle/vin.ts index 6ca28c6..35f878c 100644 --- a/src/commands/vehicle/vin.ts +++ b/src/commands/vehicle/vin.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('vin') - .description(`Returns a vehicle identification number (VIN).`) + .description(`Generates a vehicle identification number (VIN).`) .action(() => { console.log(faker.vehicle.vin()); }); diff --git a/src/commands/vehicle/vrm.ts b/src/commands/vehicle/vrm.ts index fa2194b..a48f033 100644 --- a/src/commands/vehicle/vrm.ts +++ b/src/commands/vehicle/vrm.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('vrm') .description( - `Returns a vehicle registration number (Vehicle Registration Mark - VRM)`, + `Generates a vehicle registration number (Vehicle Registration Mark - VRM).`, ) .action(() => { console.log(faker.vehicle.vrm()); diff --git a/src/commands/word/adjective.ts b/src/commands/word/adjective.ts index 4fc0388..1044416 100644 --- a/src/commands/word/adjective.ts +++ b/src/commands/word/adjective.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('adjective') - .description(`Returns an adjective of random or optionally specified length.`) + .description(`Generates an adjective of random length.`) .action(() => { console.log(faker.word.adjective()); }); diff --git a/src/commands/word/adverb.ts b/src/commands/word/adverb.ts index e90c936..9306c97 100644 --- a/src/commands/word/adverb.ts +++ b/src/commands/word/adverb.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('adverb') - .description(`Returns an adverb of random or optionally specified length.`) + .description(`Generates an adverb of random length.`) .action(() => { console.log(faker.word.adverb()); }); diff --git a/src/commands/word/conjunction.ts b/src/commands/word/conjunction.ts index 73760a4..974aa0d 100644 --- a/src/commands/word/conjunction.ts +++ b/src/commands/word/conjunction.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('conjunction') - .description( - `Returns a conjunction of random or optionally specified length.`, - ) + .description(`Generates a conjunction of random length.`) .action(() => { console.log(faker.word.conjunction()); }); diff --git a/src/commands/word/interjection.ts b/src/commands/word/interjection.ts index 133ea07..4903661 100644 --- a/src/commands/word/interjection.ts +++ b/src/commands/word/interjection.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('interjection') - .description( - `Returns an interjection of random or optionally specified length.`, - ) + .description(`Generates an interjection of random length.`) .action(() => { console.log(faker.word.interjection()); }); diff --git a/src/commands/word/noun.ts b/src/commands/word/noun.ts index 44a9e47..ac88e45 100644 --- a/src/commands/word/noun.ts +++ b/src/commands/word/noun.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('noun') - .description(`Returns a noun of random or optionally specified length.`) + .description(`Generates a noun of random length.`) .action(() => { console.log(faker.word.noun()); }); diff --git a/src/commands/word/preposition.ts b/src/commands/word/preposition.ts index 0b25fed..0035274 100644 --- a/src/commands/word/preposition.ts +++ b/src/commands/word/preposition.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('preposition') - .description( - `Returns a preposition of random or optionally specified length.`, - ) + .description(`Generates a preposition of random length.`) .action(() => { console.log(faker.word.preposition()); }); diff --git a/src/commands/word/sample.ts b/src/commands/word/sample.ts index d57d02f..04cbab2 100644 --- a/src/commands/word/sample.ts +++ b/src/commands/word/sample.ts @@ -2,9 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('sample') - .description( - `Returns a random sample of random or optionally specified length.`, - ) + .description(`Generates a random sample of random length.`) .action(() => { console.log(faker.word.sample()); }); diff --git a/src/commands/word/verb.ts b/src/commands/word/verb.ts index 3886ff5..31e9689 100644 --- a/src/commands/word/verb.ts +++ b/src/commands/word/verb.ts @@ -2,7 +2,7 @@ import { Command } from 'commander'; import { faker } from '@faker-js/faker'; const command = new Command('verb') - .description(`Returns a verb of random or optionally specified length.`) + .description(`Generates a verb of random length.`) .action(() => { console.log(faker.word.verb()); }); diff --git a/src/commands/word/words.ts b/src/commands/word/words.ts index ab24c4f..d2aa76e 100644 --- a/src/commands/word/words.ts +++ b/src/commands/word/words.ts @@ -3,7 +3,7 @@ import { faker } from '@faker-js/faker'; const command = new Command('words') .description( - `Returns a string containing a number of space separated random words.`, + `Generates a string containing a number of space separated random words.`, ) .action(() => { console.log(faker.word.words());