Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Grant Moore committed Feb 8, 2022
1 parent d8a57ed commit cf3a091
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ from innoldb.qldb import Document

# Load a document from `my_table` table.
document = Document('my_table', id="123456")
for val in document.nested_data_array:
for val in document.nested_data.array:
print(val)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/source/INTRODUCTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ from innoldb.qldb import Document

# Load a document from `my_table` table.
document = Document('my_table', id="123456")
for val in document.nested_data_array:
for val in document.nested_data.array:
print(val)
```

Expand Down

0 comments on commit cf3a091

Please sign in to comment.