Skip to content

Commit

Permalink
qapi: fix typos in documentation JSON examples
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
  • Loading branch information
Stefan Hajnoczi committed Nov 1, 2011
1 parent d0bc5bc commit acf8394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/qapi-code-gen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dictionary. This corresponds to a struct in C or an Object in JSON. An
example of a complex type is:

{ 'type': 'MyType',
'data' { 'member1': 'str', 'member2': 'int', '*member3': 'str } }
'data': { 'member1': 'str', 'member2': 'int', '*member3': 'str' } }

The use of '*' as a prefix to the name means the member is optional. Optional
members should always be added to the end of the dictionary to preserve
Expand All @@ -63,7 +63,7 @@ An example command is:

{ 'command': 'my-command',
'data': { 'arg1': 'str', '*arg2': 'str' },
'returns': 'str' ]
'returns': 'str' }

Command names should be all lower case with words separated by a hyphen.

Expand Down

0 comments on commit acf8394

Please sign in to comment.