Skip to content

Commit

Permalink
testing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
muskangupta042002 committed Sep 10, 2023
1 parent 8123f82 commit 7b3cbff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class GreetingController {

@GetMapping("/greeting")
public String greeting(@RequestParam(name="name", required=false, defaultValue="World!!") String name, Model model) {
public String greeting(@RequestParam(name="name", required=false, defaultValue="World!") String name, Model model) {
model.addAttribute("name", name);
return "greeting";
}
Expand Down

0 comments on commit 7b3cbff

Please sign in to comment.