소스 검색

Fixed link to enums.md in language.md, fixed another typo

Alan Rawkins 8 년 전
부모
커밋
316c40d0f7
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      modules/monkey/docs/language/language.md
  2. 1 1
      modules/monkey/docs/language/pointers.md

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

@@ -13,7 +13,7 @@ Note: This documentation is currently WIP.
 @import arrays.md
 @import strings.md
 @import variants.md
-@import Enums.md
+@import enums.md
 @import variables.md
 @import pointers.md
 @import functions.md

+ 1 - 1
modules/monkey/docs/language/pointers.md

@@ -47,7 +47,7 @@ Note you can use pointer arythmetics with the index operator(`[]`) but you have
 
 #### Dereferencing with ->
 
-You can acces user defined types fields, methods,.. with the `->` operator. It is equivalent to `[0].`
+You can access user defined types fields, methods,.. with the `->` operator. It is equivalent to `[0].`
 
 ```
 Struct str