Skip to content

Commit bc49735

Browse files
authored
[hotfix] Fix the missing brackets in java-client.md (apache#1225)
1 parent cc1b6d7 commit bc49735

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

6969
// obtain Table instance from the Connection
70-
Table table = connection.getTable(TablePath.of("my_db", "my_table");
70+
Table table = connection.getTable(TablePath.of("my_db", "my_table"));
7171
System.out.println(table.getTableInfo());
7272
```
7373

0 commit comments

Comments
 (0)