diff --git a/src/main.c b/src/main.c
index b9f2de959258c5f59f88d8bb5a1b738f18310e68..278b4c3d92f46891d01165c6114f78007a2bdee7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -95,10 +95,11 @@ int
 main (int    argc,
       char **argv)
 {
-    GtkApplication *app = gtk_application_new ("uk.me.bcowan.rugby", G_APPLICATION_FLAGS_NONE);
+    GtkApplication *app = gtk_application_new ("uk.me.bcowan.rugby",
+                                               G_APPLICATION_FLAGS_NONE);
 
     g_signal_connect (app, "startup",
-                      G_CALLBACK(on_startup), NULL);
+                      G_CALLBACK (on_startup), NULL);
     g_signal_connect (app, "activate",
                       G_CALLBACK (on_activate), NULL);
 
diff --git a/src/rugby-app-window.h b/src/rugby-app-window.h
index 9c824dab67ea435940f2a61cd4889a6c669cf3cb..95dae547c992d459726a3ece84f5549dfabf9e37 100644
--- a/src/rugby-app-window.h
+++ b/src/rugby-app-window.h
@@ -28,6 +28,6 @@ G_BEGIN_DECLS
 
 G_DECLARE_FINAL_TYPE (RugbyAppWindow, rugby_app_window, RUGBY, APP_WINDOW, GtkApplicationWindow);
 
-RugbyAppWindow *rugby_app_window_new (GtkApplication *app);
+RugbyAppWindow * rugby_app_window_new (GtkApplication *app);
 
 G_END_DECLS
diff --git a/src/rugby-list-store.h b/src/rugby-list-store.h
index d8e6093e29b320d3f516212a8d3fba7e37169377..6a3f9062463b9a58d8e4b3ccb284f35c80da040e 100644
--- a/src/rugby-list-store.h
+++ b/src/rugby-list-store.h
@@ -27,10 +27,10 @@ G_BEGIN_DECLS
 #define RUGBY_TYPE_LIST_STORE (rugby_list_store_get_type())
 G_DECLARE_FINAL_TYPE (RugbyListStore, rugby_list_store, RUGBY, LIST_STORE, GObject)
 
-RugbyListStore *rugby_list_store_new (void);
+RugbyListStore * rugby_list_store_new       (void);
 
-guint           rugby_list_store_get_score (RugbyListStore *self);
-void            rugby_list_store_set_score (RugbyListStore *self,
-                                            guint           score);
+guint            rugby_list_store_get_score (RugbyListStore *self);
+void             rugby_list_store_set_score (RugbyListStore *self,
+                                             guint           score);
 
 G_END_DECLS
diff --git a/src/rugby-possibility-widget.c b/src/rugby-possibility-widget.c
index d9725d86fc0e9ae4cfa0e0f7441ab358b5f2b6ac..3b32624182dc011002e216f04591dacc60e9e7cf 100644
--- a/src/rugby-possibility-widget.c
+++ b/src/rugby-possibility-widget.c
@@ -213,7 +213,6 @@ rugby_possibility_widget_class_init (RugbyPossibilityWidgetClass *klass)
     widget_class->draw = rugby_possibility_widget_draw;
     widget_class->get_preferred_height = rugby_possibility_widget_get_preferred_height;
 
-
     properties[PROP_POSSIBILITY] = g_param_spec_object ("possibility",
                                                         "Possibility",
                                                         "Possibility to be represented",
diff --git a/src/rugby-possibility.c b/src/rugby-possibility.c
index 3a701963574846b617205a9f0b7ae6403b5082c5..3bc24e60c3d60153b75a0a5cbd4d85ab2ae3594f 100644
--- a/src/rugby-possibility.c
+++ b/src/rugby-possibility.c
@@ -40,7 +40,7 @@ enum
     N_PROPS
 };
 
-static GParamSpec *properties [N_PROPS];
+static GParamSpec *properties[N_PROPS];
 
 static void
 rugby_possibility_get_property (GObject    *object,