Rename Nullable::Some to Nullable::NotNull

This commit is contained in:
SiegeLord 2014-08-19 08:58:20 -04:00
parent 3570095e34
commit f6a679f87d

View File

@ -304,7 +304,7 @@ extern {}
// If/when libprim happens, this can be removed in favor of that
pub enum Nullable<T> {
Null,
Some(T)
NotNull(T)
}
pub mod types {