Remove comments not ending in a period.

Helps avoid Travis CI errors for wrongly formatted comments. Most of
these end of function comments (if not all) are useless anyway.

Props @WPAddiction for reporting.
Fixes #891.
This commit is contained in:
Konstantin Obenland 2015-12-14 18:05:14 -08:00
parent 8183b95b95
commit cdd101e16c
4 changed files with 11 additions and 8 deletions

View file

@ -34,15 +34,17 @@ add_action( 'after_setup_theme', '_s_custom_header_setup' );
if ( ! function_exists( '_s_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
* Styles the header image and text displayed on the blog.
*
* @see _s_custom_header_setup().
*/
function _s_header_style() {
$header_text_color = get_header_textcolor();
// If no custom options for text are set, let's bail
// get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value.
/*
* If no custom options for text are set, let's bail.
* get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: HEADER_TEXTCOLOR.
*/
if ( HEADER_TEXTCOLOR === $header_text_color ) {
return;
}
@ -71,4 +73,4 @@ function _s_header_style() {
</style>
<?php
}
endif; // _s_header_style
endif;