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

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

@@ -151,7 +151,7 @@
151 151
 * To remedy this issue, we can _generify_ the `People` class.
152 152
 
153 153
 ### Part 10.1 - Modify `People` class
154
-* [Parameterize](https://stackoverflow.com/questions/12551674/what-is-meant-by-parameterized-type) the `People` signature to enfore that it is a container for objects of type `E` such that `E` is a subclass of `Person`.
154
+* [Parameterize](https://stackoverflow.com/questions/12551674/what-is-meant-by-parameterized-type) the `People` signature to enforce that it is a container for objects of type `E` such that `E` is a subclass of `Person`.
155 155
 * Modify `people` field to enforce that is a container of objects of type `E`.
156 156
 * Modify the `add` method to ensure that it handles object of type `E`.
157 157
 * Modify the `getArray` method to ensure that it returns an object of type `E[]`.