[PR][php-langspec][#38][master][closed] - Fixing byRef assignment example for consistancy
| Newsgroups | php.standards |
|---|---|
| Message-ID | <[email protected]> |
You can view the Pull Request on github: https://github.com/php/php-langspec/pull/38 Pull Request Description: All other examples of byRef assignments use `$b =& $c`, while this one here used `$b = &$c`. Using the same syntax everywhere is just clearer.