authorgravatar for quae@daurnimator.comdaurnimator <quae@daurnimator.com> 2019-11-09 12:11:12+11:00
committergravatar for quae@daurnimator.comdaurnimator <quae@daurnimator.com> 2019-11-25 09:26:32+11:00
log52645d06e1f3e46ac0d1d3a3441e1e8aa669fba9
tree5ffdb244ecbe06a339e9fec600c8cc2960741667
parenteea8b10463b944dae5434e748c9a5b67c2287bea
signaturelock-open Commit is signed but in an unrecognized format.

std: fix unfinished doc-comment in fifo


1 files changed, 2 insertions(+), 1 deletions(-)

lib/std/fifo.zig+2-1
......@@ -193,7 +193,8 @@ pub fn FixedSizeFifo(comptime T: type) type {
193193 self.count += count;
194194 }
195195
196 /// Appends the data in `src` to the fifo. You must
196 /// Appends the data in `src` to the fifo.
197 /// You must have ensured there is enough space.
197198 pub fn writeAssumeCapacity(self: *Self, src: []const T) void {
198199 assert(self.writableLength() >= src.len);
199200