aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/system.ts
diff options
context:
space:
mode:
authorHanna <[email protected]>2022-07-27 02:22:59 +0200
committerGitHub <[email protected]>2022-07-27 00:22:59 +0000
commite007abbc03d4c27e9c487a3f281eb7f9914488c8 (patch)
treef119618f117261a31cc9cc6b1fa342a88915e0db /src/definitions/system.ts
parent22a050e86fd4fb04e4232a9e57fb1602fd3944cc (diff)
downloadfaker-e007abbc03d4c27e9c487a3f281eb7f9914488c8.tar.xz
faker-e007abbc03d4c27e9c487a3f281eb7f9914488c8.zip
docs(definitions): minor formatting to definitions' types (#1172)
Diffstat (limited to 'src/definitions/system.ts')
-rw-r--r--src/definitions/system.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/definitions/system.ts b/src/definitions/system.ts
index c6aa16c7..b344fad4 100644
--- a/src/definitions/system.ts
+++ b/src/definitions/system.ts
@@ -1,13 +1,14 @@
import type { LocaleEntry } from './definitions';
/**
- * The possible definitions related to files and the system.
+ * The possible definitions related to files and operating systems.
*/
export type SystemDefinitions = LocaleEntry<{
/**
* Returns some common file paths.
*/
directoryPaths: string[];
+
/**
* The mime type definitions with some additional information.
*/
@@ -15,7 +16,7 @@ export type SystemDefinitions = LocaleEntry<{
}>;
/**
- * The mime type entry details.
+ * The mime-type entry details.
*/
export interface SystemMimeTypeEntryDefinitions {
source?: string;