From f7df36c9494c4531ef10aaf5c8598cbf392002b3 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 20 Jan 2017 10:49:45 +0100 Subject: [PATCH] Formatting --- libimagruby/src/store.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libimagruby/src/store.rs b/libimagruby/src/store.rs index 82b32984..1cc03332 100644 --- a/libimagruby/src/store.rs +++ b/libimagruby/src/store.rs @@ -135,16 +135,16 @@ pub mod storeid { pub fn setup() -> Class { let mut class = Class::new("RStoreId", None); class.define(|itself| { - itself.def_self("new" , r_storeid_new); - itself.def_self("new_baseless" , r_storeid_new_baseless); + itself.def_self("new" , r_storeid_new); + itself.def_self("new_baseless" , r_storeid_new_baseless); - itself.def("without_base" , r_storeid_without_base); - itself.def("with_base" , r_storeid_with_base); - itself.def("into_pathbuf" , r_storeid_into_pathbuf); - itself.def("exists" , r_storeid_exists); - itself.def("to_str" , r_storeid_to_str); - itself.def("local" , r_storeid_local); - }); + itself.def("without_base" , r_storeid_without_base); + itself.def("with_base" , r_storeid_with_base); + itself.def("into_pathbuf" , r_storeid_into_pathbuf); + itself.def("exists" , r_storeid_exists); + itself.def("to_str" , r_storeid_to_str); + itself.def("local" , r_storeid_local); + }); class }