diff --git a/include/SFML/System/FileInputStream.hpp b/include/SFML/System/FileInputStream.hpp index 995351ca9..86f572c38 100644 --- a/include/SFML/System/FileInputStream.hpp +++ b/include/SFML/System/FileInputStream.hpp @@ -136,7 +136,7 @@ private: //////////////////////////////////////////////////////////// -/// \class FileInputStream +/// \class sf::FileInputStream /// \ingroup system /// /// This class is a specialization of InputStream that @@ -153,17 +153,17 @@ private: /// /// SFML resource classes can usually be loaded directly from /// a filename, so this class shouldn't be useful to you unless -/// you create your own algorithms that operate on a InputStream. +/// you create your own algorithms that operate on an InputStream. /// /// Usage example: /// \code /// void process(InputStream& stream); /// -/// FileStream stream; +/// FileInputStream stream; /// if (stream.open("some_file.dat")) /// process(stream); /// \endcode /// -/// InputStream, MemoryStream +/// InputStream, MemoryInputStream /// //////////////////////////////////////////////////////////// diff --git a/include/SFML/System/MemoryInputStream.hpp b/include/SFML/System/MemoryInputStream.hpp index 250466ce7..4b7414b7b 100644 --- a/include/SFML/System/MemoryInputStream.hpp +++ b/include/SFML/System/MemoryInputStream.hpp @@ -116,7 +116,7 @@ private: //////////////////////////////////////////////////////////// -/// \class MemoryeInputStream +/// \class sf::MemoryInputStream /// \ingroup system /// /// This class is a specialization of InputStream that @@ -132,17 +132,17 @@ private: /// /// SFML resource classes can usually be loaded directly from /// memory, so this class shouldn't be useful to you unless -/// you create your own algorithms that operate on a InputStream. +/// you create your own algorithms that operate on an InputStream. /// /// Usage example: /// \code /// void process(InputStream& stream); /// -/// MemoryStream stream; +/// MemoryInputStream stream; /// stream.open(thePtr, theSize); /// process(stream); /// \endcode /// -/// InputStream, FileStream +/// InputStream, FileInputStream /// ////////////////////////////////////////////////////////////