From a57a99f7fcef5e0e7d40aa6b9dc8a042fbe6ea10 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Wed, 4 Sep 2013 21:53:05 -0700 Subject: [PATCH] Update docs --- docs/index.rst | 2 +- docs/quickstart.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 6f08293..3fd3e91 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -7,7 +7,7 @@ This is a python wrapping of the C++ implementation of the `Cap'n Proto `_), capnp has proven to be decently faster than Protocol Buffers. Also, the python capnp library can load Cap'n Proto schema files directly, without the need for a seperate compile step like with Protocol Buffers or Thrift. +Since the python library is just a thin wrapping of the C++ library, we inherit a lot of what makes Cap'n Proto fast. In some simplistic benchmarks (available in the `benchmark directory of the repo `_), pycapnp has proven to be decently faster than Protocol Buffers (both pure python and C++ implementations). Also, the python capnp library can load Cap'n Proto schema files directly, without the need for a seperate compile step like with Protocol Buffers or Thrift. Contents: diff --git a/docs/quickstart.rst b/docs/quickstart.rst index c7c608f..4f5d561 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -78,7 +78,7 @@ Now that you have a message buffer, you need to allocate an actual object that i addresses = addressbook_capnp.AddressBook.new_message() -Notice that we used `addressbook` from the previous section: `Load a Cap'n Proto Schema`_. +Notice that we used `addressbook_capnp` from the previous section: `Load a Cap'n Proto Schema`_. List ~~~~~~~~~~~~~~~~~~~~~~~~~~~