Git-Leon преди 7 години
родител
ревизия
53e79f975d
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2
    2
      README.md

+ 2
- 2
README.md Целия файл

@@ -85,12 +85,12 @@
85 85
 -
86 86
 # Part 2.2 - Create interface `PollRepository`
87 87
 * Create a `PollRepository` interface in the `repositories` subpackage.
88
-* `PollRepository` extends `CrudRepository<Option, Long>`
88
+* `PollRepository` extends `CrudRepository<Poll, Long>`
89 89
 
90 90
 -
91 91
 # Part 2.3 - Create interface `VoteRepository`
92 92
 * Create a `VoteRepository` interface in the `repositories` subpackage.
93
-* `VoteRepository` extends `CrudRepository<Option, Long>`
93
+* `VoteRepository` extends `CrudRepository<Vote, Long>`
94 94
 
95 95
 
96 96