From ad906fe39b643dd1bfbadc8480a631d223a75d6a Mon Sep 17 00:00:00 2001
From: Dmitry <98899785+mdqst@users.noreply.github.com>
Date: Thu, 12 Dec 2024 14:35:10 +0300
Subject: [PATCH] fix typo Update inheritance-ordering.js (#5354)

---
 scripts/checks/inheritance-ordering.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/checks/inheritance-ordering.js b/scripts/checks/inheritance-ordering.js
index 4ed2deec4..fbeac9ea7 100755
--- a/scripts/checks/inheritance-ordering.js
+++ b/scripts/checks/inheritance-ordering.js
@@ -31,7 +31,7 @@ for (const artifact of artifacts) {
   }
 
   /// graphlib.alg.findCycles will not find minimal cycles.
-  /// We are only interested int cycles of lengths 2 (needs proof)
+  /// We are only interested in cycles of lengths 2 (needs proof)
   graph.nodes().forEach((x, i, nodes) =>
     nodes
       .slice(i + 1)