Skip to content

Commit

Permalink
Merge pull request #38200 from gsmet/fix-resteasy-reactive-example
Browse files Browse the repository at this point in the history
Fix a code example in RESTEasy Reactive doc
  • Loading branch information
gsmet authored Jan 15, 2024
2 parents 136b4d8 + 40b0a65 commit 4b1295f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/resteasy-reactive.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,7 @@ public class Person {
private final Long id;
private final String first;
private final String last;
@SecureField(rolesAllowed = ${role:admin}") <1>
@SecureField(rolesAllowed = "${role:admin}") <1>
private String address;
public Person(Long id, String first, String last) {
Expand Down

0 comments on commit 4b1295f

Please sign in to comment.