From b8c2180aab68aa8d9b4d499174d481608eeb1108 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 16 Sep 2024 15:14:59 -0700 Subject: [PATCH] Fix spelling error in comment --- Sources/FrontEnd/TypedProgram.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/FrontEnd/TypedProgram.swift b/Sources/FrontEnd/TypedProgram.swift index ac8e31fd1..28b0b023d 100644 --- a/Sources/FrontEnd/TypedProgram.swift +++ b/Sources/FrontEnd/TypedProgram.swift @@ -55,7 +55,7 @@ public struct TypedProgram { /// - Parameters: /// - typeCheckingIsParallel: if `true`, the program is partitioned into chucks that are type /// checked separately. Otherwise, type checking is performed sequentially. Either way, the - /// order in which declarations are being checked is undeterministic. + /// order in which declarations are being checked is nondeterministic. /// - shouldTraceInference: A closure accepting a node and its containing program, returning /// `true` if a trace of type inference should be logged on the console for that node. The /// closure is not called if `typeCheckingIsParallel` is `true`.