Skip to content

Commit

Permalink
fix: README typo
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Oct 28, 2020
1 parent 10434ba commit e1cb372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ dependencies {
```java
try (KubernetesClient kc = new KubernetesClient()) {
kc.create(CoreV1Api.class).listPodForAllNamespaces().stream().forEach(p ->
System.out.printf("%-15s %s%n", p.getMetadata().getNamespace(), p.getMetadata().getName()
)
System.out.printf("%-15s %s%n", p.getMetadata().getNamespace(), p.getMetadata().getName())
);
}
```

Expand Down

0 comments on commit e1cb372

Please sign in to comment.