From 123aa27978b83cf34e88c791ab2a6c0c45019d5e Mon Sep 17 00:00:00 2001 From: Dan Roscigno Date: Thu, 15 Apr 2021 15:33:30 -0400 Subject: [PATCH] Fix spelling of 'interesting' --- docs/guide/examples.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/examples.asciidoc b/docs/guide/examples.asciidoc index d45ef403..09a5ef39 100644 --- a/docs/guide/examples.asciidoc +++ b/docs/guide/examples.asciidoc @@ -26,7 +26,7 @@ es = Elasticsearch() doc = { 'author': 'author_name', - 'text': 'Interensting content...', + 'text': 'Interesting content...', 'timestamp': datetime.now(), } res = es.index(index="test-index", id=1, body=doc) @@ -89,7 +89,7 @@ es = Elasticsearch() doc = { 'author': 'author_name', - 'text': 'Interensting modified content...', + 'text': 'Interesting modified content...', 'timestamp': datetime.now(), } res = es.update(index="test-index", id=1, body=doc) @@ -107,4 +107,4 @@ method: [source,py] ---------------------------- es.delete(index="test-index", id=1) ----------------------------- \ No newline at end of file +----------------------------