Skip to content
This repository has been archived by the owner on Aug 10, 2020. It is now read-only.

Commit

Permalink
Make punctuation in comments consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidakennedy committed May 5, 2016
1 parent 0721bb4 commit 7749874
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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' );

Expand All @@ -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' );
14 changes: 7 additions & 7 deletions inc/template-tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down Expand Up @@ -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() {
Expand All @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion inc/tweaks.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit 7749874

Please sign in to comment.