From 9a944f593b2811ed58e8e85e5f7ae5a70685cd57 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Tue, 8 Nov 2022 13:04:42 -0500 Subject: [PATCH] Fix comment in reflection. --- Reflection/aggregate_initialization.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reflection/aggregate_initialization.h b/Reflection/aggregate_initialization.h index 33df269..5740245 100644 --- a/Reflection/aggregate_initialization.h +++ b/Reflection/aggregate_initialization.h @@ -41,7 +41,7 @@ namespace Alepha::Hydrogen::Reflection : std::integral_constant< std::size_t, seq::size() > {}; // This expansion case always matches when an initializer of the number of elements in the sequence is syntactically - // valid. It also recurses, thus exploring the whole initializer set. There is have one fewer value in the sequence set + // valid. It also recurses, thus exploring the whole initializer set. There is one fewer value in the sequence set // than we use to initialize so that when SFINAE gives up, it defers to the base case above, thus having the right // count. template< typename T, std::size_t ... values >