Fix wrong version path in README

This commit is contained in:
maik klein 2017-01-05 08:06:32 +01:00
parent 5183358dd5
commit 525a78f7c5

View file

@ -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