From 5a9e24cb06ec17684f6ca81399a5ee5b74c052ed Mon Sep 17 00:00:00 2001 From: Ari Lazier Date: Fri, 29 Apr 2016 13:11:19 -0700 Subject: [PATCH] tab to space --- src/js_realm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js_realm.hpp b/src/js_realm.hpp index ce046a11..45b6b8c3 100644 --- a/src/js_realm.hpp +++ b/src/js_realm.hpp @@ -292,7 +292,7 @@ void Realm::constructor(ContextType ctx, ObjectType this_object, size_t argc, config.schema_version = 0; } - static const String migration_string = "migration"; + static const String migration_string = "migration"; ValueType migration_value = Object::get_property(ctx, object, migration_string); if (!Value::is_undefined(ctx, migration_value)) { FunctionType migration_function = Value::validated_to_function(ctx, migration_value, "migration");