From efce8c6248abc71206460de4e0c6592da9687097 Mon Sep 17 00:00:00 2001 From: Hila Friedman Date: Wed, 13 Nov 2024 15:34:10 +0200 Subject: [PATCH] clarify doc comment, the sequel --- lib/std/meta.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);