Skip to content

Commit

Permalink
chore: add software or project to software or project title
Browse files Browse the repository at this point in the history
  • Loading branch information
ewan-escience committed Sep 9, 2022
1 parent 7c64932 commit a4c0c3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data-generator/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function generateSofware(amount=50) {

for (let index = 0; index < amount; index++) {
const brandName = faker.helpers.unique(() =>
faker.hacker.adjective() + ' ' + faker.hacker.noun() + ' ' + faker.helpers.replaceSymbolWithNumber('####')
'software: ' + faker.hacker.adjective() + ' ' + faker.hacker.noun() + ' ' + faker.helpers.replaceSymbolWithNumber('####')
);
result.push({
slug: faker.helpers.slugify(brandName),
Expand Down Expand Up @@ -264,7 +264,7 @@ function generateProjects(amount=50) {

for (let index = 0; index < amount; index++) {
const title = faker.helpers.unique(() =>
faker.hacker.adjective() + ' ' + faker.hacker.noun() + ' ' + faker.helpers.replaceSymbolWithNumber('####')
'project: ' + faker.hacker.adjective() + ' ' + faker.hacker.noun() + ' ' + faker.helpers.replaceSymbolWithNumber('####')
);
result.push({
slug: faker.helpers.slugify(title),
Expand Down

0 comments on commit a4c0c3d

Please sign in to comment.