From b44f30da27211f2a43aff12207a9b00e438dbff7 Mon Sep 17 00:00:00 2001 From: Marko Bakovic Date: Fri, 1 Sep 2023 11:15:17 +0100 Subject: [PATCH] better doc --- example/buffers.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/buffers.zig b/example/buffers.zig index 95c0ff42..784edf72 100644 --- a/example/buffers.zig +++ b/example/buffers.zig @@ -4,7 +4,7 @@ const py = @import("pydust"); const Self = @This(); pub const __doc__ = - \\Using buffer protocol to use Python arrays. + \\Using buffer protocol to accept arrays, e.g. numpy. ; pub fn sum(args: *const struct { arr: py.PyObject }) !u64 {