Skip to content

Commit 540060e

Browse files
authored
Fix typo in README example
1 parent c1944e3 commit 540060e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async fn main() -> Result<(), dynamodb::Error> {
4343
let client = dynamodb::Client::from_env();
4444
let req = client.list_tables().limit(10);
4545
let resp = req.send().await?;
46-
println!("Current DynamoDB tables: {:?}", tables.table_names);
46+
println!("Current DynamoDB tables: {:?}", resp.table_names);
4747
Ok(())
4848
}
4949
```

0 commit comments

Comments
 (0)