OSC: reflow comment

pull/7429/head
Jeffrey C. Ollie 2025-05-23 22:26:01 -05:00
parent 1288296fdc
commit 04e8e52171
No known key found for this signature in database
GPG Key ID: 6F86035A6D97044E
1 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,10 @@ const std = @import("std");
const assert = std.debug.assert;
/// Datastructure to manage a (usually) small list of items. To prevent allocations
/// on the heap, statically allocate a small array that gets used to store items. Once
/// that small array is full then memory will be dynamically allocated on the heap
/// to store items.
/// Datastructure to manage a (usually) small list of items. To prevent
/// allocations on the heap, statically allocate a small array that gets used to
/// store items. Once that small array is full then memory will be dynamically
/// allocated on the heap to store items.
pub fn ArrayListStaticUnmanaged(comptime static_size: usize, comptime T: type) type {
return struct {
count: usize,