Skip to content

Commit 4d69f8c

Browse files
committed
Fix syntax in examples in release notes
1 parent 3dbba00 commit 4d69f8c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

documentation/src/docs/asciidoc/release-notes/release-notes-5.9.3.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ No changes.
2626
exception stating that `example.NonexistentType` cannot be resolved to a valid type.
2727
* The syntax for parameter types in _local_ `@MethodSource` factory method names now
2828
supports canonical array names -- for example, you may now specify `int[]` as in
29-
`@MethodSource("myFactory(int[])"` instead of the _binary_ name `[I` as in
30-
`@MethodSource("myFactory([I)"` (which was already supported) and
31-
`@MethodSource("myFactory(java.lang.String[])` instead of
32-
`@MethodSource("myFactory([Ljava.lang.String;)`.
29+
`@MethodSource("myFactory(int[])")` instead of the _binary_ name `[I` as in
30+
`@MethodSource("myFactory([I)")` (which was already supported) and
31+
`@MethodSource("myFactory(java.lang.String[])")` instead of
32+
`@MethodSource("myFactory([Ljava.lang.String;)")`.
3333
* The search algorithm used to find `@MethodSource` factory methods now applies consistent
3434
semantics for _local_ qualified method names and fully-qualified method names for
3535
overloaded factory methods.

0 commit comments

Comments
 (0)