Skip to content

Commit f6a679f

Browse files
committed
Rename Nullable::Some to Nullable::NotNull
1 parent 3570095 commit f6a679f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liblibc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ extern {}
304304
// If/when libprim happens, this can be removed in favor of that
305305
pub enum Nullable<T> {
306306
Null,
307-
Some(T)
307+
NotNull(T)
308308
}
309309

310310
pub mod types {

0 commit comments

Comments
 (0)