Opened 6 weeks ago
Closed 6 weeks ago
#7989 closed defect (bug) (invalid)
Extra space in SVN and Git command lines in PHPUnit setup documentation
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Handbooks | Keywords: | |
Cc: |
Description
There is a formatting issue on the following Core Handbook page:
🔗 https://make.wordpress.org/core/handbook/testing/automated-testing/phpunit/
Specifically, in the "Step 1: Check out the test repository" section, both the SVN and Git command lines contain extra spacing before wordpress-develop
(Extra space between /trunk/
and wordpress-develop
). This may cause confusion for users copying and pasting the command.
Current Commands:
SVN: svn co https://develop.svn.wordpress.org/trunk/ wordpress-develop
Git: git clone git://develop.git.wordpress.org/ wordpress-develop
Expected (Corrected) Commands:
SVN: svn co https://develop.svn.wordpress.org/trunk/wordpress-develop
Git: git clone git://develop.git.wordpress.org/wordpress-develop
Extra space between /trunk/ and wordpress-develop