Skip to content
Snippets Groups Projects
Commit 0e9e9c89 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixing StaticArray documentation.

parent 05c4cea6
No related branches found
No related tags found
1 merge request!41Tutorials
......@@ -231,7 +231,7 @@ template< int Size, typename Value >
std::ostream& operator<<( std::ostream& str, const StaticArray< Size, Value >& a );
/**
* \brief Serialization of arrays into binary files.
* \brief Serialization of static arrays into binary files.
*/
template< int Size, typename Value >
File& operator<<( File& file, const StaticArray< Size, Value >& array );
......@@ -240,7 +240,7 @@ template< int Size, typename Value >
File& operator<<( File&& file, const StaticArray< Size, Value >& array );
/**
* \brief Deserialization of arrays from binary files.
* \brief Deserialization of static arrays from binary files.
*/
template< int Size, typename Value >
File& operator>>( File& file, StaticArray< Size, Value >& array );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment