Commit 51d6f433 authored by Jacob Potter's avatar Jacob Potter

Fix spelling of Double

parent 0fc73a73
......@@ -117,7 +117,7 @@ namespace djinni
class F64 : public Primitive<F64, double, jdouble>
{
F64() : Primitive("java/lang/Dobule", "valueOf", "(D)Ljava/lang/Double;", "doubleValue", "()D") {}
F64() : Primitive("java/lang/Double", "valueOf", "(D)Ljava/lang/Double;", "doubleValue", "()D") {}
friend JniClass<F64>;
friend Primitive<F64, double, jdouble>;
static JniType unbox(JNIEnv* jniEnv, jmethodID method, jobject j) noexcept { return jniEnv->CallDoubleMethod(j, method); }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment