diff --git a/Redcraft.Utility/Source/Public/Range/FilterView.h b/Redcraft.Utility/Source/Public/Range/FilterView.h index c064912..81b4912 100644 --- a/Redcraft.Utility/Source/Public/Range/FilterView.h +++ b/Redcraft.Utility/Source/Public/Range/FilterView.h @@ -21,7 +21,7 @@ NAMESPACE_BEGIN(Range) /** * A view adapter that consists of the elements of a range that satisfies a predicate. * When based on an input view, the filter view satisfies at least an input view up to a bidirectional view. - * When based on a common view, the counted iterator satisfies a common view. + * When based on a common view, the filter view satisfies a common view. */ template > Pred> requires (CView && CObject && CMoveConstructible) class TFilterView : public IBasicViewInterface> diff --git a/Redcraft.Utility/Source/Public/Range/MoveView.h b/Redcraft.Utility/Source/Public/Range/MoveView.h index 0f7a023..4077b99 100644 --- a/Redcraft.Utility/Source/Public/Range/MoveView.h +++ b/Redcraft.Utility/Source/Public/Range/MoveView.h @@ -19,8 +19,8 @@ NAMESPACE_BEGIN(Range) /** * A view adapter which dereferences to a rvalue reference. - * When based on an input view, the filter view satisfies at least an input view up to a random access view. - * When based on a common view, the counted iterator satisfies a common view. + * When based on an input view, the move view satisfies at least an input view up to a random access view. + * When based on a common view, the move view satisfies a common view. */ template requires (CView) class TMoveView : public IBasicViewInterface> diff --git a/Redcraft.Utility/Source/Public/Range/TransformView.h b/Redcraft.Utility/Source/Public/Range/TransformView.h index 82e0e08..ef67112 100644 --- a/Redcraft.Utility/Source/Public/Range/TransformView.h +++ b/Redcraft.Utility/Source/Public/Range/TransformView.h @@ -18,8 +18,8 @@ NAMESPACE_BEGIN(Range) /** * A view adapter of a sequence that applies a transformation function to each element. * When based on an input view, the transform view satisfies at least an input view up to a random access view. - * When based on a common view, the counted iterator satisfies a common view. When based on a sized view, - * the counted iterator satisfies a sized view. When based on a forward view and the function return + * When based on a common view, the transform view satisfies a common view. When based on a sized view, + * the transform view satisfies a sized view. When based on a forward view and the function return * an assignable value, the transform view satisfies an output view. */ template requires (CView && CObject