Merge branch 'master' into null_safety
diff --git a/README.md b/README.md
index 8dedf25..d11972c 100644
--- a/README.md
+++ b/README.md
@@ -108,7 +108,7 @@
```yaml
dependencies:
- equatable: ^1.2.3
+ equatable: ^1.2.5
```
Next, we need to install it:
@@ -291,7 +291,7 @@
class EquatableDateTimeSubclass extends EquatableDateTime {
final int century;
- EquatableDateTime(
+ EquatableDateTimeSubclass(
this.century,
int year,[
int month = 1,
diff --git a/lib/src/equatable.dart b/lib/src/equatable.dart
index f272980..3f2f4d0 100644
--- a/lib/src/equatable.dart
+++ b/lib/src/equatable.dart
@@ -23,7 +23,7 @@
const Equatable();
/// {@template equatable_props}
- /// The list of properies that will be used to determine whether
+ /// The list of properties that will be used to determine whether
/// two instances are equal.
/// {@endtemplate}
List<Object?> get props;