llissery 8 лет назад
Родитель
Сommit
3eb88d8ba8
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      src/main/java/se/citerus/dddsample/domain/shared/Entity.java

+ 1
- 1
src/main/java/se/citerus/dddsample/domain/shared/Entity.java Просмотреть файл

@@ -10,7 +10,7 @@ public interface Entity<T> {
10 10
    * Entities compare by identity, not by attributes.
11 11
    *
12 12
    * @param other The other entity.
13
-   * @return true if the identities are the same, regardles of other attributes.
13
+   * @return true if the identities are the same, regardless of other attributes.
14 14
    */
15 15
   boolean sameIdentityAs(T other);
16 16