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); }