In release notes for Go 1.18, fix typo in changes for package testing to
correctly document the change in CL 343883.
Change-Id: I40d92858ed3f74554a094466c06771f83dd81942
Reviewed-on: https://go-review.googlesource.com/c/go/+/371616
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Cherry Mui <cherryyz@google.com>
The precedence of <code>/</code> in the argument for <code>-run</code> and
<code>-bench</code> has been increased. <code>A/B|C/D</code> used to be
treated as <code>A/(B|C)/D</code> and is now treated as
- <code>(A/B)/(C/D)</code>.
+ <code>(A/B)|(C/D)</code>.
</p>
<p><!-- CL 356669 -->