Skip to content

Commit 08b244d

Browse files
committed
bug fix typo in README.rst. Correct spelling for read only properties is 'readonly'
1 parent d62c7da commit 08b244d

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)