Fixed error in README

This commit is contained in:
Gideon le Grange 2013-09-22 21:26:32 +02:00
parent c237459f15
commit 0e37255473
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ A simple example that returns a result: Print all interfaces.
```java
List<Map<String, String>> rs = con.execute("/interface/print");
for (Result r : rs) {
for (Map<String,String> r : rs) {
System.out.println(r);
}
```