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> 2023-08-12 10:29:42-07:00
log5b5125914173481426a66c3102bfc52e5150c87e
tree21d8dd9a7a276fe0706ccddaf08ae1df618eefdc
parente4d05358e18a49c80079ead3bb31966cea564f87

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,
3434relative to itself:
3535
3636* lib/
37* zig/lib/
37* lib/zig/
3838* ../lib/
39* ../zig/lib/
39* ../lib/zig/
4040* (and so on)
4141
4242In other words, you can **unpack a release of Zig anywhere**, and then begin