Skip to content

Commit

Permalink
Fix a code example in RESTEasy Reactive doc
Browse files Browse the repository at this point in the history
Per report from @muditporwal in:
quarkusio/quarkusio.github.io#1866

(cherry picked from commit 40b0a65)
  • Loading branch information
gsmet committed Jan 15, 2024
1 parent d40a720 commit 518d71f
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 518d71f

Please sign in to comment.