ソースを参照

Update README.md

Git-Leon 6 年 前
コミット
b657f5ae2c
コミット者のEメールアドレスに関連付けられたアカウントが存在しません
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      README.md

+ 1
- 1
README.md ファイルの表示

@@ -336,7 +336,7 @@ public Iterable<Vote> getAllVotes() {
336 336
 * Create a `getVote` method in the `VoteController`
337 337
 
338 338
 ```java
339
-@RequestMapping(value="/polls/{pollId}/votes", method=RequestMethod.GET)
339
+@RequestMapping(value="/polls/votes", method=RequestMethod.GET)
340 340
 public Iterable<Vote> getVote(@PathVariable Long pollId) {
341 341
 	return voteRepository.findById(pollId);
342 342
 }