Skip to content

Commit 2514803

Browse files
authored
Merge pull request #9 from kmaehashi/fix-readme
fix typo in README
2 parents 5efbf4e + 299060a commit 2514803

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ Python API provides access to @wiki features.
5252
api = AtWikiAPI(AtWikiURI('https://w.atwiki.jp/python-client/'))
5353
5454
# Show list of tags.
55-
for page in api.get_tags():
56-
print(page['name'])
55+
for tag in api.get_tags():
56+
print(tag['name'])
5757
5858
# Show list of pages.
5959
for page in api.get_list():

0 commit comments

Comments
 (0)