diff --git a/BeefLibs/corlib/src/Nullable.bf b/BeefLibs/corlib/src/Nullable.bf index 428950b9..d223c6de 100644 --- a/BeefLibs/corlib/src/Nullable.bf +++ b/BeefLibs/corlib/src/Nullable.bf @@ -62,9 +62,9 @@ namespace System return true; } - public T GetValueOrDefault(T defaultmValue) + public T GetValueOrDefault(T defaultValue) { - return mHasValue ? mValue : defaultmValue; + return mHasValue ? mValue : defaultValue; } public override void ToString(String str)