]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/launcher/windows/windows.factor
Fix comments to be ! not #!.
[factor.git] / basis / io / launcher / windows / windows.factor
index a2db855881ca86f0caa1078b70e179ebb00e9bc3..867de0ca83539e787364353377dd514db3ba0c6b 100755 (executable)
@@ -148,8 +148,8 @@ M: windows (kill-process) ( process -- )
     handle>> hProcess>> 255 TerminateProcess win32-error=0/f ;
 
 : dispose-process ( process-information -- )
-    #! From MSDN: "Handles in PROCESS_INFORMATION must be closed
-    #! with CloseHandle when they are no longer needed."
+    ! From MSDN: "Handles in PROCESS_INFORMATION must be closed
+    ! with CloseHandle when they are no longer needed."
     [ hProcess>> [ CloseHandle drop ] when* ]
     [ hThread>> [ CloseHandle drop ] when* ] bi ;