From 5b5125914173481426a66c3102bfc52e5150c87e Mon Sep 17 00:00:00 2001 From: snoire Date: Sat, 12 Aug 2023 13:15:15 +0800 Subject: [PATCH] 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'. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d0b118abd7..0c3c99772f 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ At runtime, the executable searches up the file system for the lib/ directory, relative to itself: * lib/ -* zig/lib/ +* lib/zig/ * ../lib/ -* ../zig/lib/ +* ../lib/zig/ * (and so on) In other words, you can **unpack a release of Zig anywhere**, and then begin