From 9ef146ae00faf1a73eb64b0f83c2b59036d2a703 Mon Sep 17 00:00:00 2001 From: ike709 Date: Sun, 27 Oct 2024 00:28:46 -0500 Subject: [PATCH] fix comment --- DMCompiler/Compiler/CompilerError.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DMCompiler/Compiler/CompilerError.cs b/DMCompiler/Compiler/CompilerError.cs index bd6fde0ff7..92781d038e 100644 --- a/DMCompiler/Compiler/CompilerError.cs +++ b/DMCompiler/Compiler/CompilerError.cs @@ -49,7 +49,7 @@ public enum WarningCode { FallbackBuiltinArgument = 2208, // A builtin (sin(), cos(), etc) with an invalid/fallback argument PointlessScopeOperator = 2209, PointlessPositionalArgument = 2210, - ProcArgumentGlobal = 2211, // Prepending "/" on a proc arg (e.g. "/proc(/var/foo)" makes the arg a global var. Ref https://www.byond.com/forum/post/2830750 + ProcArgumentGlobal = 2211, // Prepending "/" on a proc arg (e.g. "/proc/example(/var/foo)" makes the arg a global var. Ref https://www.byond.com/forum/post/2830750 MalformedRange = 2300, InvalidRange = 2301, InvalidSetStatement = 2302,