Skip to content

Commit

Permalink
The word 'celestial' is an adjective, not a noun. (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyuly authored Oct 1, 2024
1 parent ab90abe commit 19f6414
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ pnpm add space-slug
## 🚀 Getting Started

```ts
const { spaceSlug, color, digits, noun } from 'space-slug';
const { spaceSlug, adjective, color, digits, noun } from 'space-slug';

const slug = spaceSlug([color(), noun(2), digits(3)], {
const slug = spaceSlug([color(), adjective(), noun(1), digits(3)], {
separator: '_'
});
// Returns: blue_celestial_labyrinth_718
Expand Down
1 change: 1 addition & 0 deletions src/dictionary/en/adjectives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@ export const adjectives = [
'vibrant',
'jovial',
'radiant',
'celestial',
];
3 changes: 0 additions & 3 deletions src/dictionary/en/nouns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ export const nouns = [
'serenity',
'aurora',
'paragon',
'celestial',
'rhapsody',
'arcade',
'charisma',
Expand Down Expand Up @@ -180,7 +179,6 @@ export const nouns = [
'serendipity',
'aurora',
'twilight',
'celestial',
'marvel',
'dusk',
'solstice',
Expand Down Expand Up @@ -224,7 +222,6 @@ export const nouns = [
'serendipity',
'aurora',
'twilight',
'celestial',
'marvel',
'dusk',
'solstice',
Expand Down

0 comments on commit 19f6414

Please sign in to comment.