소스 검색

fixed misspelling

danaugrs 7 년 전
부모
커밋
d9a4b5c565
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      renderer/shaman.go

+ 1 - 1
renderer/shaman.go

@@ -271,7 +271,7 @@ func (sm *Shaman) preprocess(source string, defines map[string]string) (string,
 		if err != nil {
 			return "", err
 		}
-		// Replace all occurrances of the include directive with its processed source code
+		// Replace all occurrences of the include directive with its processed source code
 		newSource = strings.Replace(newSource, m[0], incSource, -1)
 	}
 	return prefix + newSource, nil