Fix spelling of 'interesting'

This commit is contained in:
Dan Roscigno
2021-04-15 15:33:30 -04:00
committed by GitHub
parent 9502ab5f90
commit 123aa27978
+3 -3
View File
@@ -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)
----------------------------
----------------------------