Index: wp-content/themes/twentyfourteen/functions.php
===================================================================
--- wp-content/themes/twentyfourteen/functions.php	(revision 25769)
+++ wp-content/themes/twentyfourteen/functions.php	(working copy)
@@ -274,7 +274,7 @@
 
 /**
  * Replace "[...]" (appended to automatically generated excerpts) with an
- * ellipsis and twentyeleven_continue_reading_link().
+ * ellipsis and twentyfourteen_continue_reading_link().
  *
  * @since Twenty Fourteen 1.0
  *
Index: wp-content/themes/twentyfourteen/inc/customizer.php
===================================================================
--- wp-content/themes/twentyfourteen/inc/customizer.php	(revision 25769)
+++ wp-content/themes/twentyfourteen/inc/customizer.php	(working copy)
@@ -8,7 +8,7 @@
  */
 
 /**
- * Add postMessage support for site title and description for the Theme Customizer.
+ * Implement Theme Customizer additions and adjustments.
  *
  * @since Twenty Fourteen 1.0
  *
@@ -15,9 +15,11 @@
  * @param WP_Customize_Manager $wp_customize Theme Customizer object.
  */
 function twentyfourteen_customize_register( $wp_customize ) {
+	// Add postMessage support for site title and description.
 	$wp_customize->get_setting( 'blogname' )->transport        = 'postMessage';
 	$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
-
+	
+	// Add the custom accent color setting and control.
 	$wp_customize->add_setting( 'accent_color', array(
 		'default'           => '#24890d',
 		'sanitize_callback' => 'twentyfourteen_generate_accent_colors',
