diff --git a/config/kibana.yml b/config/kibana.yml index 872588815950..72e0764f849a 100644 --- a/config/kibana.yml +++ b/config/kibana.yml @@ -90,7 +90,7 @@ # Specifies the path where Kibana creates the process ID file. #pid.file: /var/run/kibana.pid -# Enables you specify a file where Kibana stores log output. +# Enables you to specify a file where Kibana stores log output. #logging.dest: stdout # Set the value of this setting to true to suppress all logging output. diff --git a/docs/api/saved-objects/bulk_get.asciidoc b/docs/api/saved-objects/bulk_get.asciidoc index a6fdeb69ba92..eaf91a662849 100644 --- a/docs/api/saved-objects/bulk_get.asciidoc +++ b/docs/api/saved-objects/bulk_get.asciidoc @@ -35,7 +35,7 @@ experimental[] Retrieve multiple {kib} saved objects by ID. ==== Response body `saved_objects`:: - (array) Top-level property the contains objects that represent the response for each of the requested objects. The order of the objects in the response is identical to the order of the objects in the request. + (array) Top-level property containing objects that represent the response for each of the requested objects. The order of the objects in the response is identical to the order of the objects in the request. Saved objects that are unable to persist are replaced with an error object. diff --git a/docs/development/core/public/kibana-plugin-core-public.appcategory.label.md b/docs/development/core/public/kibana-plugin-core-public.appcategory.label.md index a7e92f310a62..02c000e88f31 100644 --- a/docs/development/core/public/kibana-plugin-core-public.appcategory.label.md +++ b/docs/development/core/public/kibana-plugin-core-public.appcategory.label.md @@ -4,7 +4,7 @@ ## AppCategory.label property -Label used for cateogry name. Also used as aria-label if one isn't set. +Label used for category name. Also used as aria-label if one isn't set. Signature: diff --git a/docs/development/core/public/kibana-plugin-core-public.appcategory.md b/docs/development/core/public/kibana-plugin-core-public.appcategory.md index d91727a1bbf2..b0ec377e165b 100644 --- a/docs/development/core/public/kibana-plugin-core-public.appcategory.md +++ b/docs/development/core/public/kibana-plugin-core-public.appcategory.md @@ -19,6 +19,6 @@ export interface AppCategory | [ariaLabel](./kibana-plugin-core-public.appcategory.arialabel.md) | string | If the visual label isn't appropriate for screen readers, can override it here | | [euiIconType](./kibana-plugin-core-public.appcategory.euiicontype.md) | string | Define an icon to be used for the category If the category is only 1 item, and no icon is defined, will default to the product icon Defaults to initials if no icon is defined | | [id](./kibana-plugin-core-public.appcategory.id.md) | string | Unique identifier for the categories | -| [label](./kibana-plugin-core-public.appcategory.label.md) | string | Label used for cateogry name. Also used as aria-label if one isn't set. | +| [label](./kibana-plugin-core-public.appcategory.label.md) | string | Label used for category name. Also used as aria-label if one isn't set. | | [order](./kibana-plugin-core-public.appcategory.order.md) | number | The order that categories will be sorted in Prefer large steps between categories to allow for further editing (Default categories are in steps of 1000) | diff --git a/src/core/types/app_category.ts b/src/core/types/app_category.ts index 8b39889b43a8..396cb07b437a 100644 --- a/src/core/types/app_category.ts +++ b/src/core/types/app_category.ts @@ -30,7 +30,7 @@ export interface AppCategory { id: string; /** - * Label used for cateogry name. + * Label used for category name. * Also used as aria-label if one isn't set. */ label: string;