From 1ef7cc3f0748a2d7a360d305ef2a9d62f632aa74 Mon Sep 17 00:00:00 2001 From: maik klein Date: Thu, 5 Jan 2017 08:49:44 +0100 Subject: [PATCH] Update readme for entry --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78de206..e897483 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ use ash::{Device, Instance}; // Specifies the version that you want to load use ash::version::V1_0; // Those traits implement the version specific functions -use ash::{InstanceV1_0, DeviceV1_0}; +use ash::{InstanceV1_0, DeviceV1_0, EntryV1_0}; let entry = Entry::::new().unwrap(); let instance = entry.create_instance(...).expect("Instance creation error."); let device = instance.create_device(...).expect("Device creation error.");