From 0e87ef42d011503ddb8c06f37a6d035654df4678 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 23 Oct 2017 22:50:30 +0000 Subject: [PATCH] Docs: Fix typo in `path_is_absolute()` description. Props octalmage, birgire. Fixes #42317. git-svn-id: https://develop.svn.wordpress.org/trunk@41983 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 56a444b0f2..de0042ff32 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -1646,7 +1646,7 @@ function wp_mkdir_p( $target ) { } /** - * Test if a give filesystem path is absolute. + * Test if a given filesystem path is absolute. * * For example, '/foo/bar', or 'c:\windows'. *