From d2cf3bd7f8fa314284a8a67e4a02bf855b1a572b Mon Sep 17 00:00:00 2001 From: Daniel Scharrer Date: Fri, 22 Mar 2013 09:43:14 +0100 Subject: [PATCH] Fix documentation typos and bad references --- src/stream/slice.hpp | 2 +- src/util/endian.hpp | 2 +- src/util/unique_ptr.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stream/slice.hpp b/src/stream/slice.hpp index 00b9f82..4b75b60 100644 --- a/src/stream/slice.hpp +++ b/src/stream/slice.hpp @@ -33,7 +33,7 @@ namespace stream { -//! Error thrown by \ref chunk_reader if there was a problem. +//! Error thrown by \ref slice_reader if there was a problem. struct slice_error : public std::ios_base::failure { explicit slice_error(std::string msg) : std::ios_base::failure(msg) { } diff --git a/src/util/endian.hpp b/src/util/endian.hpp index 1f5d026..ea62326 100644 --- a/src/util/endian.hpp +++ b/src/util/endian.hpp @@ -19,7 +19,7 @@ */ /*! - * Utility function for dealing with different endiannesses. + * Utility functions for dealing with different endiannesses. */ #ifndef INNOEXTRACT_UTIL_ENDIAN_HPP #define INNOEXTRACT_UTIL_ENDIAN_HPP diff --git a/src/util/unique_ptr.hpp b/src/util/unique_ptr.hpp index 72f2cd3..7e2ab59 100644 --- a/src/util/unique_ptr.hpp +++ b/src/util/unique_ptr.hpp @@ -30,7 +30,7 @@ namespace util { -//! Get a unique_ptr or auto_ptr for the given type. +//! Get a std::unique_ptr or std::auto_ptr for the given type. template struct unique_ptr { #if INNOEXTRACT_HAVE_STD_UNIQUE_PTR