Skip to content

Commit

Permalink
Fix interensting typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Nov 30, 2023
1 parent 7b0fbcf commit e93d706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/examples.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ es = Elasticsearch('https://localhost:9200')
doc = {
'author': 'author_name',
'text': 'Interensting content...',
'text': 'Interesting content...',
'timestamp': datetime.now(),
}
resp = es.index(index="test-index", id=1, document=doc)
Expand Down Expand Up @@ -90,7 +90,7 @@ client = Elasticsearch('https://localhost:9200')
doc = {
'author': 'author_name',
'text': 'Interensting modified content...',
'text': 'Interesting modified content...',
'timestamp': datetime.now(),
}
resp = client.update(index="test-index", id=1, doc=doc)
Expand Down

0 comments on commit e93d706

Please sign in to comment.