fastmem: fix doc comment

This commit is contained in:
Qwerasd
2024-03-26 12:03:37 -06:00
parent 492e147e26
commit d72eb30a26

View File

@ -12,7 +12,7 @@ pub inline fn move(comptime T: type, dest: []T, source: []const T) void {
} }
} }
/// Same as std.mem.copyForwards but prefers libc memcpy if it is available /// Same as @memcpy but prefers libc memcpy if it is available
/// because it is generally much faster. /// because it is generally much faster.
pub inline fn copy(comptime T: type, dest: []T, source: []const T) void { pub inline fn copy(comptime T: type, dest: []T, source: []const T) void {
if (builtin.link_libc) { if (builtin.link_libc) {