Skip to content

Commit

Permalink
minor #3531 Remove horizontal scrolling in code block (ifdattic)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.4 branch.

Discussion
----------

Remove horizontal scrolling in code block

| Q             | A
| ------------- | ---
| Doc fix?      | yes
| New docs?     | no
| Applies to    | 2.4
| Fixed tickets |

Commits
-------

4419aad Remove horizontal scrolling in code block
  • Loading branch information
weaverryan committed Feb 4, 2014
2 parents 9676f2c + 4419aad commit f634600
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/expression_language/caching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ Both ``evaluate()`` and ``compile()`` can handle ``ParsedExpression`` and
use Symfony\Component\ExpressionLanguage\SerializedParsedExpression;
// ...
$expression = new SerializedParsedExpression(serialize($language->parse('1 + 4')));
$expression = new SerializedParsedExpression(
serialize($language->parse('1 + 4'))
);
echo $language->evaluate($expression); // prints 5
Expand Down

0 comments on commit f634600

Please sign in to comment.