From 701aaeb2cd5536e4fab841ac0c22ef29f39ed7db Mon Sep 17 00:00:00 2001 From: Robin Voetter Date: Fri, 30 Jul 2021 00:50:42 +0200 Subject: [PATCH] Clarify on package name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2cd1690..e589988 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ pub fn build(b: *Builder) void { exe.addPackagePath(gen.package); } ``` -This reads vk.xml, parses its contents, and renders the Vulkan bindings to "vk.zig", which is then formatted and placed in `zig-cache`. The resulting file can then be added to an executable by using `addPackagePath`. +This reads vk.xml, parses its contents, and renders the Vulkan bindings to "vk.zig", which is then formatted and placed in `zig-cache`. The resulting file can then be added to an executable by using `addPackagePath`, after which the bindings will be made available to the executable under the name `vulkan`. ### Function & field renaming Functions and fields are renamed to be more or less in line with [Zig's standard library style](https://ziglang.org/documentation/master/#Style-Guide):