Merge pull request #4 from jodergrosse/correction_quickstart_doc

Closes #3
This commit is contained in:
Stijn Van Campenhout
2020-11-11 18:13:57 +01:00
committed by GitHub

View File

@@ -26,7 +26,7 @@ and use the code you see on the webpage
rmapy = Client() rmapy = Client()
# Should return False # Should return False
rmapy.is_authenticated() rmapy.is_auth()
# This registers the client as a new device. The received device token is # This registers the client as a new device. The received device token is
# stored in the users directory in the file ~/.rmapi, the same as with the # stored in the users directory in the file ~/.rmapi, the same as with the
# go rmapi client. # go rmapi client.
@@ -35,7 +35,7 @@ and use the code you see on the webpage
# a new session. # a new session.
rmapy.refresh_token() rmapy.refresh_token()
# Should return True # Should return True
rmapy.is_authenticated() rmapy.is_auth()
Working with items Working with items
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~