Skip to content

Commit

Permalink
Merge branch 'next' into feat/modules/number
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 authored Nov 25, 2022
2 parents c59eac2 + 0af0fff commit 237b81d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/date/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export class DateModule {
*
* @param options The optional options to use.
* @param options.abbr Whether to return an abbreviation. Defaults to `false`.
* @param options.context Whether to return the name of a month in a context. Defaults to `false`.
* @param options.context Whether to return the name of a month in the context of a date. In the default `en` locale this has no effect, however, in other locales like `fr` or `ru`, this may affect grammar or capitalization, for example `'январь'` with `{ context: false }` and `'января'` with `{ context: true }` in `ru`. Defaults to `false`.
*
* @example
* faker.date.month() // 'October'
Expand Down Expand Up @@ -255,7 +255,7 @@ export class DateModule {
*
* @param options The optional options to use.
* @param options.abbr Whether to return an abbreviation. Defaults to `false`.
* @param options.context Whether to return the day of the week in a context. Defaults to `false`.
* @param options.context Whether to return the day of the week in the context of a date. In the default `en` locale this has no effect, however, in other locales like `fr` or `ru`, this may affect grammar or capitalization, for example `'Lundi'` with `{ context: false }` and `'lundi'` with `{ context: true }` in `fr`. Defaults to `false`.
*
* @example
* faker.date.weekday() // 'Monday'
Expand Down

0 comments on commit 237b81d

Please sign in to comment.