Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 4801fd1

Browse files
committed
Fix typo in index.elasticsearch/plugin_doc.html
1 parent 2909e38 commit 4801fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/plugins/index.elasticsearch/plugin_doc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- Create an index called "test_index":<br/>
1818
<pre>$ curl -XPUT 'localhost:9200/test_index'</pre><br/>
1919
- Then add a document with the type "test_type" with the following command:<br/>
20-
<pre>$ curl -XPUT 'localhost:9200/test_index/test_type/1 -d '{"user":"test", "message":"this is a test"}'</pre>
20+
<pre>$ curl -XPUT 'localhost:9200/test_index/test_type/1' -d '{"user":"test", "message":"this is a test"}'</pre>
2121
This will add a document with id equals to 1 containing two fields "user" and "message" that respective values are "test" and "this is a test".<br/>
2222
The document will be added in the index "test_index" under the type "test_type".<br/><br/>
2323
- You can retrieve the documents by their id:

0 commit comments

Comments
 (0)