authorgravatar for snoire@qq.comsnoire <snoire@qq.com> 2023-08-12 13:15:15+08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-29 14:30:16-07:00
log2d4e24dd6b1178efabb06928062836f059f2af00
tree01f598724dc011159778e73805eae707561fd9c0
parentb8565dd62fe001337429aa022a63d16930d552c3

Fix incorrect lib search paths in README

The README contains a typo stating 'zig/lib/' and '../zig/lib/' as the lib search paths. This should be 'lib/zig' and '../lib/zig'.

1 files changed, 2 insertions(+), 2 deletions(-)

README.md+2-2
...@@ -34,9 +34,9 @@ At runtime, the executable searches up the file system for the lib/ directory,...@@ -34,9 +34,9 @@ At runtime, the executable searches up the file system for the lib/ directory,
34relative to itself:34relative to itself:
3535
36* lib/36* lib/
37* zig/lib/37* lib/zig/
38* ../lib/38* ../lib/
39* ../zig/lib/39* ../lib/zig/
40* (and so on)40* (and so on)
4141
42In other words, you can **unpack a release of Zig anywhere**, and then begin42In other words, you can **unpack a release of Zig anywhere**, and then begin