| author | |
| committer | |
| log | 52645d06e1f3e46ac0d1d3a3441e1e8aa669fba9 |
| tree | 5ffdb244ecbe06a339e9fec600c8cc2960741667 |
| parent | eea8b10463b944dae5434e748c9a5b67c2287bea |
| signature |
1 files changed, 2 insertions(+), 1 deletions(-)
lib/std/fifo.zig+2-1| ... | ... | @@ -193,7 +193,8 @@ pub fn FixedSizeFifo(comptime T: type) type { |
| 193 | 193 | self.count += count; |
| 194 | 194 | } |
| 195 | 195 | |
| 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. | |
| 197 | 198 | pub fn writeAssumeCapacity(self: *Self, src: []const T) void { |
| 198 | 199 | assert(self.writableLength() >= src.len); |
| 199 | 200 |