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

@ -23,7 +23,7 @@ function _s_jetpack_setup() {
// Add theme support for Responsive Videos.
add_theme_support( 'jetpack-responsive-videos' );
} // end function _s_jetpack_setup
}
add_action( 'after_setup_theme', '_s_jetpack_setup' );
/**
@ -38,4 +38,4 @@ function _s_infinite_scroll_render() {
get_template_part( 'template-parts/content', get_post_format() );
endif;
}
} // end function _s_infinite_scroll_render
}