Skip to content

Commit bd255fc

Browse files
authored
[Doc] fix typo in add_datasets docs (#3496)
1 parent c685fe6 commit bd255fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/en/advanced_guides/add_datasets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here we show how to develop a new custom dataset.
1818
classes=('xxx', 'xxx', ...),
1919
palette=[[x, x, x], [x, x, x], ...])
2020

21-
def __init__(self, aeg1, arg2):
21+
def __init__(self, arg1, arg2):
2222
pass
2323
```
2424

docs/zh_cn/advanced_guides/add_datasets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
classes=('xxx', 'xxx', ...),
1919
palette=[[x, x, x], [x, x, x], ...])
2020

21-
def __init__(self, aeg1, arg2):
21+
def __init__(self, arg1, arg2):
2222
pass
2323
```
2424

0 commit comments

Comments
 (0)