From 2e405fc7a347460b5bee8334f46a4003a07c52cb Mon Sep 17 00:00:00 2001
From: Manuel Gunther <siebenkopf@googlemail.com>
Date: Mon, 23 May 2016 17:56:21 -0600
Subject: [PATCH] Corrected C++ interface documentation

---
 doc/c_cpp_api.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/c_cpp_api.rst b/doc/c_cpp_api.rst
index da4f8fc..3a7b439 100644
--- a/doc/c_cpp_api.rst
+++ b/doc/c_cpp_api.rst
@@ -133,16 +133,16 @@ Bob HDF5 Support
 
 .. cpp:type:: PyBobIoHDF5FileObject
 
-   The pythonic object representation for a ``bob::io::HDF5File`` object.
+   The pythonic object representation for a ``bob::io::base::HDF5File`` object.
 
    .. code-block:: cpp
 
       typedef struct {
         PyObject_HEAD
-        boost::shared_ptr<bob::io::HDF5File> f;
+        boost::shared_ptr<bob::io::base::HDF5File> f;
       } PyBobIoHDF5FileObject;
 
-   .. cpp:member:: boost::shared_ptr<bob::io::HDF5File> f
+   .. cpp:member:: boost::shared_ptr<bob::io::base::HDF5File> f
 
       A pointer to a Bob object being used to read/write data into an HDF5
       file.
-- 
GitLab