diff --git a/lib/std/meta.zig b/lib/std/meta.zig index 704a5c67e4..44bfb65f8a 100644 --- a/lib/std/meta.zig +++ b/lib/std/meta.zig @@ -738,7 +738,7 @@ test TagPayload { } /// Compares two of any type for equality. Containers that do not support comparison -/// are compared on a field-by-field basis. Pointers are not followed. +/// on their own are compared on a field-by-field basis. Pointers are not followed. pub fn eql(a: anytype, b: @TypeOf(a)) bool { const T = @TypeOf(a);