diff --git a/README.md b/README.md
index e8ed43f5..8b78891e 100644
--- a/README.md
+++ b/README.md
@@ -253,14 +253,16 @@ In the package `readme.md` file, please specify the supported SDK:
or
-
+
```markdown
-
+
```
+> Some packages requires Flutter, so please specify it.
+
---
## Usage
diff --git a/packages/wyatt_analysis/README.md b/packages/wyatt_analysis/README.md
index 28b5244d..95d85e02 100644
--- a/packages/wyatt_analysis/README.md
+++ b/packages/wyatt_analysis/README.md
@@ -20,7 +20,7 @@

-This package provides lint rules for Dart and Flutter which are used at [Wyatt](https://wyattapp.io) and [Wyatt Studio](https://wyatt-studio.fr). For more information, see the complete list of options in **lib/analysis_options.2.4.1.yaml**.
+This package provides lint rules for Dart and Flutter which are used at [Wyatt Studio](https://wyatt-studio.fr). For more information, see the complete list of options in **lib/analysis_options.2.4.1.yaml**.
**Note**: This package was heavily inspired by [pedantic](https://github.com/dart-lang/pedantic), [Very Good Analysis](https://github.com/VeryGoodOpenSource/very_good_analysis) and the official [flutter_lints](https://pub.dev/packages/flutter_lints).
diff --git a/packages/wyatt_architecture/README.md b/packages/wyatt_architecture/README.md
index 263ab0e2..e077fbec 100644
--- a/packages/wyatt_architecture/README.md
+++ b/packages/wyatt_architecture/README.md
@@ -16,11 +16,11 @@
* along with this program. If not, see
@@ -142,3 +142,11 @@ The date formatter works with `String` formatter:
final DateTime date = DateTime(1999, 6, 30);
print(date.format([dd, '/', mm, '/', yy])); // prints '30/06/99'
```
+
+Allow comparison between nullable numbers:
+
+```dart
+final int? a = 10;
+final int? b = 20;
+print(a < b); // prints 'true'
+```
diff --git a/packages/wyatt_type_utils/lib/src/src.dart b/packages/wyatt_type_utils/lib/src/src.dart
index 34d55694..c1d65c3c 100644
--- a/packages/wyatt_type_utils/lib/src/src.dart
+++ b/packages/wyatt_type_utils/lib/src/src.dart
@@ -15,9 +15,5 @@
// along with this program. If not, see