From 1deaf5a085308b7a48eadd7f4f22de6096681e94 Mon Sep 17 00:00:00 2001 From: K4 Date: Sun, 17 May 2026 19:47:37 +0300 Subject: [PATCH] rename `std.Io.GenericReader` to `std.Io.Reader` in outdated doc comment --- lib/std/json.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/json.zig b/lib/std/json.zig index 23f8576805006b4a4d9dedc3d94521f750291ae6..297fc36c0fb0fe38a36127427493e0607d0dd701 100644 --- a/lib/std/json.zig +++ b/lib/std/json.zig @@ -1,7 +1,7 @@ //! JSON parsing and stringification conforming to RFC 8259. https://datatracker.ietf.org/doc/html/rfc8259 //! //! The low-level `Scanner` API produces `Token`s from an input slice or successive slices of inputs, -//! The `Reader` API connects a `std.Io.GenericReader` to a `Scanner`. +//! The `Reader` API connects a `std.Io.Reader` to a `Scanner`. //! //! The high-level `parseFromSlice` and `parseFromTokenSource` deserialize a JSON document into a Zig type. //! Parse into a dynamically-typed `Value` to load any JSON value for runtime inspection. -- 2.54.0