Skip to content

Commit

Permalink
Fix a code example in RESTEasy Reactive doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jan 15, 2024
1 parent 136b4d8 commit 40b0a65
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 40b0a65

Please sign in to comment.