From f6a679f87ddfed6c759b8a9d5cfc0393a7b6d00b Mon Sep 17 00:00:00 2001 From: SiegeLord Date: Tue, 19 Aug 2014 08:58:20 -0400 Subject: [PATCH] Rename Nullable::Some to Nullable::NotNull --- src/liblibc/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 370dc4a08222..9c699a880075 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -304,7 +304,7 @@ extern {} // If/when libprim happens, this can be removed in favor of that pub enum Nullable { Null, - Some(T) + NotNull(T) } pub mod types {