Making WordPress.org

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: ravigadhiyawp's profile ravigadhiyawp 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

Attachments (1)

php-unit-setup-documentation.png (196.9 KB) - added by ravigadhiyawp 6 weeks ago.
Extra space between /trunk/ and wordpress-develop

Download all attachments as: .zip

Change History (3)

@ravigadhiyawp
6 weeks ago

Extra space between /trunk/ and wordpress-develop

#1 @opurockey
6 weeks ago

The command is alright. Like when you run svn co https://develop.svn.wordpress.org/trunk/ wordpress-develop it will create a folder named wordpress-develop and pull the code from https://develop.svn.wordpress.org/trunk/ to that wordpress-develop directory.

#2 @Otto42
6 weeks ago

  • Resolution set to invalid
  • Status changed from new to closed

The space is intentional and correct.

Note: See TracTickets for help on using tickets.