From d270a672f2a22e0a0f3b415086cf4ff392014ee0 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Thu, 23 Nov 2023 17:08:39 +0000 Subject: [PATCH] [NFC] fix comment typo in `GraphAlgorithms.swift` `encounted` -> `encountered` --- Sources/TSCBasic/GraphAlgorithms.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/TSCBasic/GraphAlgorithms.swift b/Sources/TSCBasic/GraphAlgorithms.swift index 55df8ac4..cbb19db4 100644 --- a/Sources/TSCBasic/GraphAlgorithms.swift +++ b/Sources/TSCBasic/GraphAlgorithms.swift @@ -102,7 +102,7 @@ public func topologicalSort( /// Finds the first cycle encountered in a graph. /// /// This method uses DFS to look for a cycle and immediately returns when a -/// cycle is encounted. +/// cycle is encountered. /// /// - Parameters: /// - nodes: The list of input nodes to sort.