Skip to content

Commit 745e4fe

Browse files
committed
Remove unmatched params in 6.06
1 parent c4d4359 commit 745e4fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

06_databases/6-06_indexing-with-elasticsearch.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ To create an index, use the +clojurewerkz.elastisch.rest.index/create+ function:
6969
(esi/create "test1")
7070
7171
;; Create an index with custom settings
72-
(esi/create "test2" :settings {"number_of_shards" 1}))
72+
(esi/create "test2" :settings {"number_of_shards" 1})
7373
----
7474

7575
A full explanation of the available indexing settings is outside the
@@ -101,7 +101,7 @@ an index is created using the +:mapping+ option:
101101
:term_vector
102102
"with_positions_offsets"}}}})
103103
104-
(esi/create "test3" :mappings mapping-types)))
104+
(esi/create "test3" :mappings mapping-types)
105105
----
106106

107107
===== Indexing documents

0 commit comments

Comments
 (0)