Skip to content

Commit edf9f33

Browse files
authored
docs: Add missing semicolon in README #742
Add missing semicolon in README
1 parent 53ff14a commit edf9f33

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
@@ -127,7 +127,7 @@ Gson gson = new GsonBuilder().setPrettyPrinting().create();
127127
System.out.println(gson.toJson(results[0].addressComponents));
128128

129129
// Invoke .shutdown() after your application is done making requests
130-
context.shutdown()
130+
context.shutdown();
131131
```
132132

133133
**Note:** The `GeoApiContext` is designed to be a [Singleton](https://en.wikipedia.org/wiki/Singleton_pattern)

0 commit comments

Comments
 (0)