-
Notifications
You must be signed in to change notification settings - Fork 998
Fix typos and docs standards and URL. #5337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typos and docs standards and URL. #5337
Conversation
wpamitkumar
commented
Jan 20, 2020
- fix typos and docs standards and URL.
php/utils.php
Outdated
@@ -184,7 +185,7 @@ function is_path_absolute( $path ) { | |||
/** | |||
* Composes positional arguments into a command string. | |||
* | |||
* @param array | |||
* @param array $args Composes positional arguments. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param array $args Composes positional arguments. | |
* @param array $args Positional arguments to compose. |
php/utils.php
Outdated
@@ -194,7 +195,7 @@ function args_to_str( $args ) { | |||
/** | |||
* Composes associative arguments into a command string. | |||
* | |||
* @param array | |||
* @param array $assoc_args Composes associative arguments. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param array $assoc_args Composes associative arguments. | |
* @param array $assoc_args Associative arguments to compose. |
php/utils.php
Outdated
@@ -559,11 +560,11 @@ function make_progress_bar( $message, $count, $interval = 100 ) { | |||
* Additionally, this adds 'http://' to the URL if no scheme was found. | |||
* | |||
* @param string $url The URL to parse. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alignment is off for this comment block.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alignment is the same at is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Issue fixed.
Thanks for the PR, @wpamitkumar ! |