Skip to content

Commit 477eb08

Browse files
Fix small typo in search_dsl.rst
Co-authored-by: Seth Michael Larson <[email protected]>
1 parent e865d8a commit 477eb08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/search_dsl.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ A simple example is below
451451
452452
s = Search()
453453
# We're going to match based only on two fields, in this case text and title
454-
s = s.query(MoreLikeThis(like=my_text, fields=['text', 'title]))
454+
s = s.query(MoreLikeThis(like=my_text, fields=['text', 'title']))
455455
# You can also exclude fields from the result to make the response quicker in the normal way
456456
s = s.source(exclude=["text"])
457457
response = s.execute()

0 commit comments

Comments
 (0)