From 955542a50a4405c54fc77f733696088638334661 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Mon, 11 Jun 2018 21:32:39 -0400 Subject: [PATCH] Fix snippets in upgrade docs The upgrade docs were using the json language tag but console wants these to be js for proper formatting. This commit addresses that. --- docs/reference/upgrade.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/upgrade.asciidoc b/docs/reference/upgrade.asciidoc index 16ad61fe9a0..e1cab8832c9 100644 --- a/docs/reference/upgrade.asciidoc +++ b/docs/reference/upgrade.asciidoc @@ -83,7 +83,7 @@ collection after the upgrade to use monitoring. Set `xpack.monitoring.collection.enabled` to `true` with the `_cluster/settings` API: -[source,json] +[source,js] ---------------------------------------------------------- PUT /_cluster/settings { @@ -97,7 +97,7 @@ PUT /_cluster/settings To take all of the {xpack} features for a spin, you can start a 30-day trial from Kibana, or with the Start Trial API: -[source,json] +[source,js] ---------------------------------------------------------- POST _xpack/license/start_trial ----------------------------------------------------------