COMMON: Minor comments fixes for new Std files

This commit is contained in:
Paul Gilbert 2024-07-07 15:30:41 -07:00
parent b6b2b3ae4c
commit b9a20efa68
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
namespace Std {
/**
* Derives the ScummVM SortedArray to match the Std::set class
* Derives the ScummVM SortedArray to match the std::set class
*/
template<class T, class Comparitor = Common::Less<T> >
class set : public Common::SortedArray<T, const T &> {

View File

@ -557,7 +557,7 @@ protected:
/**
* Insert a range of elements coming from this or another array.
* Unlike Std::vector::insert, this method does not accept
* Unlike std::vector::insert, this method does not accept
* arbitrary iterators, mainly because our iterator system is
* seriously limited and does not distinguish between input iterators,
* output iterators, forward iterators, or random access iterators.