Skip to content

Commit

Permalink
Fix MR comment (overwrite -> append)
Browse files Browse the repository at this point in the history
  • Loading branch information
aandres authored and rtyler committed Oct 11, 2024
1 parent 6a657ed commit 7a3b03f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/how-delta-lake-works/architecture-of-delta-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Create another pandas DataFrame and append it to the Delta table to see how this

```python
df = pd.DataFrame({"num": [8, 9], "letter": ["dd", "ee"]})
write_deltalake("tmp/some-table", df, mode="ovewrite")
write_deltalake("tmp/some-table", df, mode="append")
```

Here are the files in storage:
Expand Down

0 comments on commit 7a3b03f

Please sign in to comment.