Browse Source

[DOCS] Removing wildcard from DELETE index template request (#70418)

Adam Locke 4 years ago
parent
commit
f2cd547364
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/reference/indices/index-templates.asciidoc

+ 3 - 2
docs/reference/indices/index-templates.asciidoc

@@ -156,8 +156,9 @@ PUT _index_template/template_1
 
 [source,console]
 ----
-DELETE _index_template/*
-DELETE _component_template/*
+DELETE _index_template/template_1
+DELETE _component_template/runtime_component_template
+DELETE _component_template/component_template1
 ----
 // TEST[continued]