From 809a28437267780aa2adfc6bdda1801ae9788c1a Mon Sep 17 00:00:00 2001 From: ihommani Date: Wed, 3 Oct 2018 15:18:30 +0200 Subject: [PATCH] Fix README typo --- .../google-cloud-contrib/google-cloud-nio/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md index f4ee3261d3f7..e542b6925c32 100644 --- a/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md +++ b/google-cloud-clients/google-cloud-contrib/google-cloud-nio/README.md @@ -117,7 +117,7 @@ The simplest way to get started is with `Paths` and `Files`: If you know the paths will point to Google Cloud Storage, you can also use the direct formulation: - try (CloudStorageFileSystem fs = CloudStorageFileSystem.forBucket("bucket") { + try (CloudStorageFileSystem fs = CloudStorageFileSystem.forBucket("bucket")) { Path path = fs.getPath("lolcat.csv"); List lines = Files.readAllLines(path, StandardCharsets.UTF_8); }