includes/std: Fixed description of array library (#125)

This commit is contained in:
Nik
2023-06-12 08:10:48 +02:00
committed by GitHub
parent 032f3c7c01
commit acd2d4abb8

View File

@@ -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]];
};
}
}