Skip to content

Commit 4e55913

Browse files
committed
Remove trailing spaces
1 parent 2b63202 commit 4e55913

File tree

1 file changed

+2
-2
lines changed
  • wordpress-coding-standards

1 file changed

+2
-2
lines changed

wordpress-coding-standards/php.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ $baz = sprintf(
355355
esc_html__( 'Hello, %s!', 'yourtextdomain' ),
356356
$friend_name
357357
);
358-
358+
359359
$a = foo(
360360
$bar,
361361
$baz,
@@ -443,7 +443,7 @@ While this operator does exist in Core, it is often used lazily instead of doing
443443

444444
Avoid touching the database directly. If there is a defined function that can get the data you need, use it. Database abstraction (using functions instead of queries) helps keep your code forward-compatible and, in cases where results are cached in memory, it can be many times faster.
445445

446-
If you must touch the database, consider creating a [Trac](https://core.trac.wordpress.org/) ticket. There you can discuss the possibility of adding a new function to cover the functionality you wanted, for a future version of WordPress.
446+
If you must touch the database, consider creating a [Trac](https://core.trac.wordpress.org/) ticket. There you can discuss the possibility of adding a new function to cover the functionality you wanted, for a future version of WordPress.
447447

448448
### Formatting SQL statements
449449

0 commit comments

Comments
 (0)