[Scummvm-git-logs] scummvm master -> b9a20efa68df3f8ea4befe69ebdb9e770fd70898
dreammaster
noreply at scummvm.org
Sun Jul 7 22:31:55 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
b9a20efa68 COMMON: Minor comments fixes for new Std files
Commit: b9a20efa68df3f8ea4befe69ebdb9e770fd70898
https://github.com/scummvm/scummvm/commit/b9a20efa68df3f8ea4befe69ebdb9e770fd70898
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2024-07-07T15:31:35-07:00
Commit Message:
COMMON: Minor comments fixes for new Std files
Changed paths:
common/std/set.h
common/std/vector.h
diff --git a/common/std/set.h b/common/std/set.h
index ea6c1cf0f8c..671f703cbf6 100644
--- a/common/std/set.h
+++ b/common/std/set.h
@@ -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 &> {
diff --git a/common/std/vector.h b/common/std/vector.h
index 9e9a7b1b457..379f22797bf 100644
--- a/common/std/vector.h
+++ b/common/std/vector.h
@@ -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.
More information about the Scummvm-git-logs
mailing list