Zig Version
0.15.2, master
Steps to Reproduce and Observed Behavior
https://ziglang.org/documentation/master/std/#std.leb128
https://ziglang.org/documentation/0.15.2/std/#std.leb128
My code needed to read a uleb128, so I found std.leb128.readUleb128 in the standard library in my project using 0.15.2.
Upon trying to call std.leb128.readUleb128 I got the compile error root source file struct 'std' has no member named 'leb128'. Changing it to std.leb.readUleb128 works.
I would guess this has something to do with lib/std/std.zig's assignment pub const leb = @import("leb128.zig"); where the name of the constant is different from the filename.
This is mentioned in the issue comment at https://github.com/ziglang/zig/issues/17334#issuecomment-2156206541 but I'm not sure if that issue is actually focused on this general problem or something else.
Expected Behavior
Expected the namespace at the top of the docs page to match compilable code.