diff options
-rw-r--r-- | doc/manual/pkcs11.rst | 2 | ||||
-rw-r--r-- | doc/manual/x509.rst | 2 | ||||
-rwxr-xr-x | src/scripts/ci/travis/install.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/pkcs11.rst b/doc/manual/pkcs11.rst index 48c063400..38d973798 100644 --- a/doc/manual/pkcs11.rst +++ b/doc/manual/pkcs11.rst @@ -1089,7 +1089,7 @@ implements the :cpp:class:`Hardware_RNG` interface. .. cpp:function:: PKCS11_RNG(Session& session) - A PKCS#11 :cpp:class:`Session` must be passed to instantiate a :cpp:class:`PKCS11_RNG`. + A PKCS#11 :cpp:class:`Session` must be passed to instantiate a ``PKCS11_RNG``. .. cpp:function:: void randomize(Botan::byte output[], std::size_t length) override diff --git a/doc/manual/x509.rst b/doc/manual/x509.rst index 901eee09c..1aec0f043 100644 --- a/doc/manual/x509.rst +++ b/doc/manual/x509.rst @@ -293,7 +293,7 @@ The result of the validation is returned as a class: implicitly trusted for this validation to be correct. -A :cpp:class:`Path_Validation_Restrictions` is passed to the path +A ``Path_Validation_Restrictions`` is passed to the path validator and specifies restrictions and options for the validation step. The two constructors are: diff --git a/src/scripts/ci/travis/install.sh b/src/scripts/ci/travis/install.sh index a4718a1cc..9f24457ab 100755 --- a/src/scripts/ci/travis/install.sh +++ b/src/scripts/ci/travis/install.sh @@ -28,7 +28,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then # all C++ features used in the manual. Install python-requests to avoid # problem in Ubuntu packaged version, see # http://stackoverflow.com/questions/32779919/no-module-named-for-requests - sudo apt-get remove python-requests pyopenssl + sudo apt-get remove python-requests python-openssl sudo pip install requests sphinx pyopenssl fi |