From 525a78f7c5603735871750aad24c2367551f6802 Mon Sep 17 00:00:00 2001 From: maik klein Date: Thu, 5 Jan 2017 08:06:32 +0100 Subject: [PATCH] Fix wrong version path in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec1cab8..400c217 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Ash also takes care of loading the function pointers. Function pointers are spli Ash also manages multiple versions of Vulkan without any breakage. You will never run into any runtime error because you tried to access a function pointer that failed to load. Function pointers either load successfully or fail and return an error. ```Rust -use ash::version::{Device, Instance}; +use ash::{Device, Instance}; // Specifies the version that you want to load use ash::version::V1_0; // Those traits implement the version specific functions