We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 44527a3 + 69a0eca commit 0987d92Copy full SHA for 0987d92
1 file changed
src/main/docs/guide/swaggerAnnotations/schemasNaming.adoc
@@ -18,7 +18,7 @@ class Owner {
18
private Pet cat;
19
private Pet dog;
20
21
- @Schema(description = "Pet that is a a bird") // <2>
+ @Schema(description = "Pet that is a bird") // <2>
22
public Pet getBird() {
23
return bird;
24
}
@@ -30,7 +30,7 @@ class Owner {
30
31
@Schema(name = "Dog", description = "Pet that is a dog") // <4>
32
public Pet getDog() {
33
- return cat;
+ return dog;
34
35
36
----
0 commit comments