about summary refs log tree commit diff
path: root/src/containers/stack.zig
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/containers/stack.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/containers/stack.zig b/src/containers/stack.zig
index e783665..1e4c3e1 100644
--- a/src/containers/stack.zig
+++ b/src/containers/stack.zig
@@ -2,6 +2,7 @@ const std = @import("std");
 const Allocator = std.mem.Allocator;
 const testing = std.testing;
 
+// Linked list based stack implementation
 pub fn Node(comptime T: type) type {
     return struct {
         const Self = @This();