From dfd809b7c825f4ecc18610528dc264e36246cc15 Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Thu, 13 Sep 2018 21:16:02 -0600 Subject: [PATCH] Correct typos. --- samples/SodaBasic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/SodaBasic.py b/samples/SodaBasic.py index b65aeaf..c7a9aa2 100644 --- a/samples/SodaBasic.py +++ b/samples/SodaBasic.py @@ -3,7 +3,7 @@ #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ -# soda1.py +# SodaBasic.py # A basic Simple Oracle Document Access (SODA) example. # # This script requires cx_Oracle 7.0 and higher. @@ -34,7 +34,7 @@ indexSpec = { 'name': 'CITY_IDX', 'order': 'asc' } ] } collection.createIndex(indexSpec) -# Insert a documents. +# Insert a document. # A system generated key is created by default. content = {'name': 'Matilda', 'address': {'city': 'Melbourne'}} doc = collection.insertOneAndGet(content)