diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 23:05:29 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 23:05:29 +0200 |
| commit | 7a9ea3ee6d02d8eade6d7988498bd69716391563 (patch) | |
| tree | 1a920e9550114cd2dc36d4c489bb65ea1f73542a /core/container/priority_queue | |
| parent | 2bc409eab53bb7208ec59d431112489eb9d226db (diff) | |
Further overhaul of package line comments.
Diffstat (limited to 'core/container/priority_queue')
| -rw-r--r-- | core/container/priority_queue/doc.odin | 2 | ||||
| -rw-r--r-- | core/container/priority_queue/priority_queue.odin | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/core/container/priority_queue/doc.odin b/core/container/priority_queue/doc.odin deleted file mode 100644 index 7cba4af8d..000000000 --- a/core/container/priority_queue/doc.odin +++ /dev/null @@ -1,2 +0,0 @@ -// package priority_queue implements a Priority Queue data structure. -package container_priority_queue
\ No newline at end of file diff --git a/core/container/priority_queue/priority_queue.odin b/core/container/priority_queue/priority_queue.odin index c62a821f4..c9ef807c5 100644 --- a/core/container/priority_queue/priority_queue.odin +++ b/core/container/priority_queue/priority_queue.odin @@ -1,3 +1,4 @@ +// A priority queue data structure. package container_priority_queue import "base:builtin" |