소스 검색

Fixed trycatch example code

Alan Rawkins 8 년 전
부모
커밋
36abd28dbe
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/monkey/docs/language/error-handling.md

+ 1 - 1
modules/monkey/docs/language/error-handling.md

@@ -44,7 +44,7 @@ Class CustomException Extends Throwable
   	End
 End
 
-Function Main()
+Function Main:Void()
 	Local somethingWrong:=True
 	Try
 		If somethingWrong=True Then Throw New CustomException ("Custom Exception detected")