Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
prkumar committed Jun 28, 2018
1 parent 9c82b8d commit 86536f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -42,7 +42,7 @@ from addressbook_pb2.py import Person

class AddressBookClient(Consumer):
@get("/persons/{person_id}")
def get_person(self, id) -> Person:
def get_person(self, person_id) -> Person:
pass
```

Expand Down Expand Up @@ -113,7 +113,7 @@ from addressbook_pb2.py import Person
class AddressBookClient(Consumer):
@returns.from_json
@get("/persons/{person_id}")
def get_person(self, id) -> Person:
def get_person(self, person_id) -> Person:
pass
```

Expand Down Expand Up @@ -184,7 +184,7 @@ class AddressBookClient(Consumer):
@returns.from_json
@json_options.ignore_unknown_fields
@get("/persons/{person_id}")
def get_person(self, id) -> Person:
def get_person(self, person_id) -> Person:
pass

@json
Expand Down

0 comments on commit 86536f6

Please sign in to comment.