From 07e8ba32db76bfc0c98b4dcf8716bd403919e50e Mon Sep 17 00:00:00 2001 From: jon r Date: Mon, 1 Jan 2024 02:31:37 +0100 Subject: [PATCH] docs: guides / python / add-documents typo --- guides/how-to-guides/use-the-python-client/add-documents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/how-to-guides/use-the-python-client/add-documents.md b/guides/how-to-guides/use-the-python-client/add-documents.md index 277a8e9f..cab238a6 100644 --- a/guides/how-to-guides/use-the-python-client/add-documents.md +++ b/guides/how-to-guides/use-the-python-client/add-documents.md @@ -22,7 +22,7 @@ To insert multiple documents you can also invoke `insert_document`: ```python documents = [{ '@type' : 'Person', 'name' : "Jim" }, { '@type' : 'Person', 'name' : "Jill" }] -results = client.insert_document(document) +results = client.insert_document(documents) ``` ### Insert schema document(s)