From 599200c023b59fbe86a364ff4d450b1113426563 Mon Sep 17 00:00:00 2001 From: aaron Date: Mon, 26 Oct 2015 23:52:03 -0500 Subject: [PATCH] Edited for typos --- docs/scenarios/clibs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/scenarios/clibs.rst b/docs/scenarios/clibs.rst index f2e75d3..5d20fa4 100644 --- a/docs/scenarios/clibs.rst +++ b/docs/scenarios/clibs.rst @@ -16,7 +16,7 @@ as structs and unions, and allows you to modify things such as padding and alignment, if needed. It can be a bit crufty to use, but in conjunction with the `struct `_ module, you are essentially provided full control over how your data types get translated -into something something usable by a C(++). +into something usable by a pure C(++) method. Struct Equivalents ~~~~~~~~~~~~~~~~~~ @@ -101,6 +101,6 @@ Boost.Python `Boost.Python `_ requires a bit more manual work to expose C++ object functionality, but -it is capable of providing all the same features SWIG does, and then some, +it is capable of providing all the same features SWIG does and then some, to include providing wrappers to access PyObjects in C++, extracting SWIG- wrapper objects, and even embedding bits of Python into your C++ code.