Skip to content

Commit

Permalink
bug #3943 Fixing simple quotes in double quotes (ptitlazy)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.3 branch.

Discussion
----------

Fixing simple quotes in double quotes

| Q             | A
| ------------- | ---
| Doc fix?      | yes
| New docs?     | no
| Applies to    | 2.3
| Fixed tickets | #3942

Some simple quotes should be double quotes, for end of line to be used as such.

Commits
-------

dc6c993 Fixing simple quotes in double quotes
  • Loading branch information
weaverryan committed Jun 19, 2014
2 parents 6cba0f1 + dc6c993 commit d8329dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/console/helpers/dialoghelper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ from the command line, you need to overwrite the HelperSet used by the command::
$commandTester = new CommandTester($command);

$dialog = $command->getHelper('dialog');
$dialog->setInputStream($this->getInputStream('Test\n'));
$dialog->setInputStream($this->getInputStream("Test\n"));
// Equals to a user inputing "Test" and hitting ENTER
// If you need to enter a confirmation, "yes\n" will work

Expand Down

0 comments on commit d8329dc

Please sign in to comment.