summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1fe8698..ab4cf29 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,7 @@ let images = docker.images();
#### list host-local images
```rust
-for i in images.list().unwrap() {
+for i in images.list(&Default::default()).unwrap() {
println!("-> {:?}", i);
}
```
@@ -108,7 +108,7 @@ let containers = docker.containers();
#### listing host local containers
```rust
-for c in contains.list().unwrap() {
+for c in containers.list(&Default::default()).unwrap() {
println!("- {:?}", c);
}
```