diff --git a/includes/std/array.pat b/includes/std/array.pat index 3f05805..517baa9 100644 --- a/includes/std/array.pat +++ b/includes/std/array.pat @@ -1,8 +1,8 @@ #pragma once /*! - The array library contains various helper functions and types to make - it easier to work with Arrays. + The array library contains a helper type to make it easier to create multi-dimensional arrays + and pass arrays to functions as parameters. */ namespace std { @@ -16,4 +16,4 @@ namespace std { T data[Size] [[inline]]; }; -} \ No newline at end of file +}