From 774987425e79a6b1cbb2df592dd3daf02564b903 Mon Sep 17 00:00:00 2001 From: "David A. Kennedy" Date: Wed, 4 May 2016 23:14:48 -0400 Subject: [PATCH] Make punctuation in comments consistent. --- functions.php | 8 ++++---- inc/template-tags.php | 14 +++++++------- inc/tweaks.php | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/functions.php b/functions.php index 752d38a..b1a673f 100755 --- a/functions.php +++ b/functions.php @@ -193,7 +193,7 @@ function accessiblezen_mce_css( $mce_css ) { add_filter( 'mce_css', 'accessiblezen_mce_css' ); /** - * Enqueue scripts and styles + * Enqueue scripts and styles. */ function accessiblezen_scripts_styles() { global $wp_styles; @@ -220,7 +220,7 @@ function accessiblezen_scripts_styles() { add_action( 'wp_enqueue_scripts', 'accessiblezen_scripts_styles' ); /** - * Implement the Custom Header feature + * Implement the Custom Header feature. */ require( get_template_directory() . '/inc/custom-header.php' ); @@ -230,11 +230,11 @@ function accessiblezen_scripts_styles() { require( get_template_directory() . '/inc/template-tags.php' ); /** - * Custom functions that act independently of the theme templates + * Add custom functions that act independently of the theme templates. */ require( get_template_directory() . '/inc/tweaks.php' ); /** - * Customizer additions + * Add Customizer additions. */ require( get_template_directory() . '/inc/customizer.php' ); diff --git a/inc/template-tags.php b/inc/template-tags.php index 7dec807..aece776 100755 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -10,7 +10,7 @@ if ( ! function_exists( 'accessiblezen_content_nav' ) ) : /** - * Display navigation to next/previous pages when applicable + * Display navigation to next/previous pages when applicable. * * @since Accessible_Zen 1.0 */ @@ -93,7 +93,7 @@ function accessiblezen_posted_on() { if ( ! function_exists( 'accessiblezen_archive_page_title_etc' ) ) : /** - * Display info for the page title on the archive page + * Display info for the page title on the archive page. * * @since Accessible Zen 1.0 */ @@ -220,8 +220,8 @@ function accessiblezen_cats_and_tags() { if ( ! function_exists( 'accessiblezen_get_post_format_archive_link' ) ) : /** - * Prints a link to the Post Format archive page - * Use: accessiblezen_get_post_format_archive_link(); + * Prints a link to the Post Format archive page. + * * @since Accessible Zen 1.0 */ function accessiblezen_get_post_format_archive_link() { @@ -236,7 +236,7 @@ function accessiblezen_get_post_format_archive_link() { if ( ! function_exists( 'accessiblezen_get_post_format_icon' ) ) : /** - * Prints the markup for the genericon icon font + * Prints the markup for the genericon icon font. * * @since Accessible Zen 1.0 */ @@ -275,7 +275,7 @@ function accessiblezen_get_post_format_icon() { endif; // ends check for accessiblezen_get_post_format_icon /** - * Returns true if a blog has more than 1 category + * Returns true if a blog has more than 1 category. * * @since Accessible Zen 1.0 */ @@ -302,7 +302,7 @@ function accessiblezen_categorized_blog() { } /** - * Flush out the transients used in accessiblezen_categorized_blog + * Flush out the transients used in accessiblezen_categorized_blog. * * @since Accessible Zen 1.0 */ diff --git a/inc/tweaks.php b/inc/tweaks.php index c2e9274..2cb75b2 100755 --- a/inc/tweaks.php +++ b/inc/tweaks.php @@ -110,7 +110,7 @@ function accessiblezen_excerpt_length( $length ) { if ( ! function_exists( 'accessiblezen_continue_reading_link' ) ) : /** - * Returns a "Continue Reading" link for excerpts + * Returns a "Continue Reading" link for excerpts. * @since Accessible Zen 1.0 * @return string with 'Continue reading' link. */