Skip to content

Commit 98c2f47

Browse files
authored
[docs] Fix the missing brackets in java-client.md (#1240)
1 parent da6a2a4 commit 98c2f47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/docs/apis/java-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Admin admin = connection.getAdmin();
8888
admin.listDatabases().get().forEach(System.out::println);
8989

9090
// obtain Table instance from the Connection
91-
Table table = connection.getTable(TablePath.of("my_db", "my_table");
91+
Table table = connection.getTable(TablePath.of("my_db", "my_table"));
9292
System.out.println(table.getTableInfo());
9393
```
9494

0 commit comments

Comments
 (0)