Przeglądaj źródła

docs(core): Fix casing of UI abbreviation (#1984)

Pieter Doms 3 lat temu
rodzic
commit
4e27a67292
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      packages/common/src/shared-types.ts

+ 4 - 4
packages/common/src/shared-types.ts

@@ -214,7 +214,7 @@ export type CustomFieldsObject = { [key: string]: any };
 export interface AdminUiConfig {
 export interface AdminUiConfig {
     /**
     /**
      * @description
      * @description
-     * The hostname of the Vendure server which the admin ui will be making API calls
+     * The hostname of the Vendure server which the admin UI will be making API calls
      * to. If set to "auto", the Admin UI app will determine the hostname from the
      * to. If set to "auto", the Admin UI app will determine the hostname from the
      * current location (i.e. `window.location.hostname`).
      * current location (i.e. `window.location.hostname`).
      *
      *
@@ -223,7 +223,7 @@ export interface AdminUiConfig {
     apiHost: string | 'auto';
     apiHost: string | 'auto';
     /**
     /**
      * @description
      * @description
-     * The port of the Vendure server which the admin ui will be making API calls
+     * The port of the Vendure server which the admin UI will be making API calls
      * to. If set to "auto", the Admin UI app will determine the port from the
      * to. If set to "auto", the Admin UI app will determine the port from the
      * current location (i.e. `window.location.port`).
      * current location (i.e. `window.location.port`).
      *
      *
@@ -331,7 +331,7 @@ export interface AdminUiConfig {
 export interface AdminUiAppConfig {
 export interface AdminUiAppConfig {
     /**
     /**
      * @description
      * @description
-     * The path to the compiled admin ui app files. If not specified, an internal
+     * The path to the compiled admin UI app files. If not specified, an internal
      * default build is used. This path should contain the `vendure-ui-config.json` file,
      * default build is used. This path should contain the `vendure-ui-config.json` file,
      * index.html, the compiled js bundles etc.
      * index.html, the compiled js bundles etc.
      */
      */
@@ -359,7 +359,7 @@ export interface AdminUiAppConfig {
 export interface AdminUiAppDevModeConfig {
 export interface AdminUiAppDevModeConfig {
     /**
     /**
      * @description
      * @description
-     * The path to the uncompiled ui app source files. This path should contain the `vendure-ui-config.json` file.
+     * The path to the uncompiled UI app source files. This path should contain the `vendure-ui-config.json` file.
      */
      */
     sourcePath: string;
     sourcePath: string;
     /**
     /**