Fix schema example in the documentation

This commit is contained in:
Jakub Stasiak
2014-04-07 00:34:41 +01:00
parent becbd966de
commit b4ee5039fc

View File

@@ -26,7 +26,7 @@ This will look all through all the directories in your sys.path/PYTHONPATH, and
For future reference, here is the Cap'n Proto schema. Also available in the github repository under `examples/addressbook.capnp <https://github.com/jparyani/pycapnp/tree/master/examples>`_:: For future reference, here is the Cap'n Proto schema. Also available in the github repository under `examples/addressbook.capnp <https://github.com/jparyani/pycapnp/tree/master/examples>`_::
# addressbook.capnp # addressbook.capnp
0x934efea7f017fff0; @0x934efea7f017fff0;
const qux :UInt32 = 123; const qux :UInt32 = 123;
@@ -47,11 +47,11 @@ For future reference, here is the Cap'n Proto schema. Also available in the gith
} }
} }
employment @4 union { employment :union {
unemployed @5 :Void; unemployed @4 :Void;
employer @6 :Text; employer @5 :Text;
school @7 :Text; school @6 :Text;
selfEmployed @8 :Void; selfEmployed @7 :Void;
# We assume that a person is only one of these. # We assume that a person is only one of these.
} }
} }