Skip to content

Commit

Permalink
Fix Create a file example in README.md (#62)
Browse files Browse the repository at this point in the history
users_dict variable was called as user_data_dict
  • Loading branch information
damascene authored Sep 6, 2024
1 parent 1c1bc95 commit e3d6e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ users_dict = {
"u2": { "name" : "Sue", "age": 21, "job": "Architect" },
"u3": { "name" : "Joe", "age": 50, "job": "Manager" },
}
DDB.at("users").create(user_data_dict)
DDB.at("users").create(users_dict)
```
There is now a file called `users.json` or `users.ddb` in your specified storage
directory depending on if you use compression.
Expand Down

0 comments on commit e3d6e83

Please sign in to comment.