From c334dd40640af9b485aa4de4a1beaf29668b0195 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Wed, 29 Nov 2023 17:24:32 +0000 Subject: [PATCH] [NFC] fix comment typo in `GraphAlgorithms.swift` (#441) `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.