Skip to content

Commit b841c12

Browse files
authored
Fixed a typo
Thanks for this repo :)
1 parent c4e7ac0 commit b841c12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/guru/springframework/controllers/ProductController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public void setProductService(ProductService productService) {
2222
@RequestMapping(value = "/products", method = RequestMethod.GET)
2323
public String list(Model model){
2424
model.addAttribute("products", productService.listAllProducts());
25-
System.out.println("Returning rpoducts:");
25+
System.out.println("Returning products:");
2626
return "products";
2727
}
2828

0 commit comments

Comments
 (0)