Skip to content

Commit

Permalink
Merge branch 'main' into fix/locales/el/credit_card
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 authored Feb 14, 2022
2 parents b40f627 + 2f94155 commit a961f71
Show file tree
Hide file tree
Showing 10 changed files with 706 additions and 348 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/locales/en/vehicle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { VehicleDefinitions } from '../../..';
import bicycle from './bicycle';
import bicycle_type from './bicycle_type';
import fuel from './fuel';
import manufacturer from './manufacturer';
import model from './model';
import type_ from './type';

const vehicle = {
bicycle,
const vehicle: VehicleDefinitions = {
bicycle_type,
fuel,
manufacturer,
model,
type: type_,
} as Partial<VehicleDefinitions>;
};

export default vehicle;
File renamed without changes.
8 changes: 4 additions & 4 deletions src/locales/ur/vehicle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { VehicleDefinitions } from '../../..';
import bicycle from './bicycle';
import bicycle_type from './bicycle_type';
import fuel from './fuel';
import manufacturer from './manufacturer';
import model from './model';
import type_ from './type';

const vehicle = {
bicycle,
const vehicle: VehicleDefinitions = {
bicycle_type,
fuel,
manufacturer,
model,
type: type_,
} as Partial<VehicleDefinitions>;
};

export default vehicle;
2 changes: 1 addition & 1 deletion src/mersenne.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class Mersenne {
}

/**
* Generates a random number between min and max (inclusive).
* Generates a random number between [min, max)'.
*
* @param max The maximum number. Defaults to `0`.
* @param min The minimum number. Defaults to `32768`. Required if `max` is set.
Expand Down
Loading

0 comments on commit a961f71

Please sign in to comment.