Merge pull request #904 from bradp/patch-1

Add missing space in comment
This commit is contained in:
Matt Trask
2022-02-07 16:34:41 -06:00
committed by GitHub

View File

@@ -87,7 +87,7 @@ rewritten like this:
{% highlight php %} {% highlight php %}
<?php <?php
//Null Coalescing Operator // Null Coalescing Operator
echo $foo['bar'] ?? ''; echo $foo['bar'] ?? '';
{% endhighlight %} {% endhighlight %}