summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/Array.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Private/NewKit/Array.hpp')
-rw-r--r--Private/NewKit/Array.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Private/NewKit/Array.hpp b/Private/NewKit/Array.hpp
index 6724d8a9..68ca9bfc 100644
--- a/Private/NewKit/Array.hpp
+++ b/Private/NewKit/Array.hpp
@@ -11,7 +11,7 @@
namespace NewOS
{
-template <typename T, Size N>
+template <typename T, Size N>
class Array final
{
public:
@@ -26,7 +26,7 @@ public:
if (At > N)
return {};
- kcout << "Returning element\r\n";
+ kcout << "Returning element\r";
return ErrorOr<T>(fArray[At]);
}
@@ -65,6 +65,6 @@ public:
private:
T fArray[N];
-
+
};
} // namespace NewOS