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 #pragma once
/*! /*!
The array library contains various helper functions and types to make The array library contains a helper type to make it easier to create multi-dimensional arrays
it easier to work with Arrays. and pass arrays to functions as parameters.
*/ */
namespace std { namespace std {
@@ -16,4 +16,4 @@ namespace std {
T data[Size] [[inline]]; T data[Size] [[inline]];
}; };
} }