Skip to content

Commit 6695488

Browse files
ZmmBigdatawuchong
authored andcommitted
[docs] Fix the missing brackets in java-client.md (#1240)
1 parent 3e87429 commit 6695488

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
@@ -86,7 +86,7 @@ Admin admin = connection.getAdmin();
8686
admin.listDatabases().get().forEach(System.out::println);
8787

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

0 commit comments

Comments
 (0)