From b94d30626f5399e01a68b39f08d1e2075cd8c429 Mon Sep 17 00:00:00 2001 From: ross Date: Sun, 26 Mar 2023 17:34:33 +0900 Subject: [PATCH] Fix typo fix typo of org.springframework.samples.petclinic.owner.Owner.getPet(java.lang.String) annotation. --- .../java/org/springframework/samples/petclinic/owner/Owner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/samples/petclinic/owner/Owner.java b/src/main/java/org/springframework/samples/petclinic/owner/Owner.java index cf6517da4..a5234942b 100644 --- a/src/main/java/org/springframework/samples/petclinic/owner/Owner.java +++ b/src/main/java/org/springframework/samples/petclinic/owner/Owner.java @@ -109,7 +109,7 @@ public class Owner extends Person { /** * Return the Pet with the given id, or null if none found for this Owner. - * @param name to test + * @param id to test * @return a pet if pet id is already in use */ public Pet getPet(Integer id) {