mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Coding Standards: Fix incorrect alignment in two comment blocks.
Tabs should only be used for indentation and not for mid-line alignment. Props jrf. See #53359. git-svn-id: https://develop.svn.wordpress.org/trunk@51551 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -7,11 +7,11 @@
|
||||
*
|
||||
* start() and stop() must be called in pairs, for example:
|
||||
*
|
||||
* function something_to_profile() {
|
||||
* wppf_start(__FUNCTION__);
|
||||
* do_stuff();
|
||||
* wppf_stop();
|
||||
* }
|
||||
* function something_to_profile() {
|
||||
* wppf_start( __FUNCTION__ );
|
||||
* do_stuff();
|
||||
* wppf_stop();
|
||||
* }
|
||||
*
|
||||
* Multiple profile blocks are permitted, and they may be nested.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user