From 494e4ee1468030523de08abac1f18601601196af Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Mon, 25 Jan 2016 18:57:43 +0000 Subject: [PATCH] Docs: Fix indentation in `add_filter()` example. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@36392 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/plugin.php b/src/wp-includes/plugin.php index 5581196696..7f6217dedf 100644 --- a/src/wp-includes/plugin.php +++ b/src/wp-includes/plugin.php @@ -50,7 +50,7 @@ if ( ! isset( $wp_current_filter ) ) * * function example_callback( $example ) { * // Maybe modify $example in some way. - * return $example; + * return $example; * } * add_filter( 'example_filter', 'example_callback' ); *