Skip to content

Commit 2b44052

Browse files
committed
Update README.md
1 parent a75b07d commit 2b44052

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ Aligned links:
9898

9999
Multiple tables on the same page:
100100

101-
On @Controller
101+
On your @Controller
102102
```java
103103
@RequestMapping("/users")
104104
public String list(ModelMap model, @Qualifier("foo") Pageable first, @Qualifier("bar") Pageable second){
105105
model.addAttribute("page", userService.find(first));
106-
model.addAttribute("page", userService.find(second));
106+
model.addAttribute("barPage", userService.find(second));
107107

108108
return "users/list";
109109
}

0 commit comments

Comments
 (0)