From 12770ca6bd6745db5c75382a48e600a7168959e1 Mon Sep 17 00:00:00 2001
From: Mike Francis <mikeffrancis@gmail.com>
Date: Tue, 25 Mar 2014 09:49:29 +0000
Subject: [PATCH] Removed extra parentheses

---
 functions.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/functions.php b/functions.php
index cd61f9d..2803cae 100644
--- a/functions.php
+++ b/functions.php
@@ -30,7 +30,7 @@ add_filter( 'post_comments_feed_link', 'remove_comments_rss' );
 
 function theme_scripts() {
   wp_deregister_script( 'jquery' );
-  wp_register_script( 'jquery', ( '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' ), false, '1.10.2', true);
+  wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', false, '1.10.2', true);
   wp_enqueue_script( 'jquery' );
   wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/js/script.js', array( 'jquery' ), null, true );
 }