mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 04:48:20 +00:00
std: fix unfinished doc-comment in fifo
This commit is contained in:
parent
eea8b10463
commit
52645d06e1
@ -193,7 +193,8 @@ pub fn FixedSizeFifo(comptime T: type) type {
|
||||
self.count += count;
|
||||
}
|
||||
|
||||
/// Appends the data in `src` to the fifo. You must
|
||||
/// Appends the data in `src` to the fifo.
|
||||
/// You must have ensured there is enough space.
|
||||
pub fn writeAssumeCapacity(self: *Self, src: []const T) void {
|
||||
assert(self.writableLength() >= src.len);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user