summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/Ref.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 06:42:53 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 06:42:53 +0100
commita3887b0695ffc83d2541d2ad8124e0d02f45ceae (patch)
tree8ecc0e38c845a85d3d9fb77a3aa81369f7837734 /dev/CompilerKit/Ref.h
parent233d0343265ccda26ad06bfe52acdb1d12489bf4 (diff)
fix: meta: codebase improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/Ref.h')
-rw-r--r--dev/CompilerKit/Ref.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/CompilerKit/Ref.h b/dev/CompilerKit/Ref.h
index 5869644..01b7d96 100644
--- a/dev/CompilerKit/Ref.h
+++ b/dev/CompilerKit/Ref.h
@@ -13,7 +13,7 @@
#include <CompilerKit/Defines.h>
namespace CompilerKit {
-/// @author El Mahrouss Amlal
+/// @author Amlal El Mahrouss
/// @brief Reference holder class, refers to a pointer of data in static memory.
template <typename T>
class Ref final {
@@ -54,7 +54,7 @@ class Ref final {
Bool m_Strong{false};
};
-// @author El Mahrouss Amlal
+// @author Amlal El Mahrouss
// @brief Non null Reference holder class, refers to a pointer of data in static memory.
template <typename T>
class NonNullRef final {