Skip to content

Commit 6820b81

Browse files
authored
Merge pull request #56 from awslabs/readme-typo
Fix typo in README example
2 parents c1944e3 + 540060e commit 6820b81

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)