diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-03-10 18:10:51 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-03-10 18:13:30 -0700 |
| commit | aa852f737b7504e01d0a4cd08c115ae508bb81c7 (patch) | |
| tree | 026250727cfe4dcfe1e06a2f9fec411b4dd60034 /lib/std/elf.zig | |
| parent | b13a55db97b14fac0462d2a1cb83be8dcb2eb335 (diff) | |
| download | zig-aa852f737b7504e01d0a4cd08c115ae508bb81c7.tar.gz zig-aa852f737b7504e01d0a4cd08c115ae508bb81c7.zip | |
improve documentation in std
A lot of these "shorthand" doc comments were redundant, low quality
filler content. Better to let the actual modules speak for themselves
with top level doc comments rather than trying to document their
aliases.
Diffstat (limited to 'lib/std/elf.zig')
| -rw-r--r-- | lib/std/elf.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/elf.zig b/lib/std/elf.zig index e40c215e83..bdb84f5171 100644 --- a/lib/std/elf.zig +++ b/lib/std/elf.zig @@ -1,3 +1,5 @@ +//! Executable and Linkable Format. + const std = @import("std.zig"); const math = std.math; const mem = std.mem; |
