Skip to content

Commit 9cd2cf8

Browse files
authored
Merge pull request #217 from rich0rd/master
bug fix typo in README.rst
2 parents 53a9a4d + d69291a commit 9cd2cf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ With Flask-RESTX, you only import the api instance to route and document your en
7575
ns = api.namespace('todos', description='TODO operations')
7676
7777
todo = api.model('Todo', {
78-
'id': fields.Integer(readOnly=True, description='The task unique identifier'),
78+
'id': fields.Integer(readonly=True, description='The task unique identifier'),
7979
'task': fields.String(required=True, description='The task details')
8080
})
8181

0 commit comments

Comments
 (0)