Gama11 11 роки тому
батько
коміт
875fb2aa7f
2 змінених файлів з 3 додано та 3 видалено
  1. 1 1
      std/Reflect.hx
  2. 2 2
      std/neko/vm/Loader.hx

+ 1 - 1
std/Reflect.hx

@@ -20,7 +20,7 @@
  * DEALINGS IN THE SOFTWARE.
  */
 /**
-	The Reflect API is a way to manipulate values dynamicly through an
+	The Reflect API is a way to manipulate values dynamically through an
 	abstract interface in an untyped manner. Use with care.
 **/
 extern class Reflect {

+ 2 - 2
std/neko/vm/Loader.hx

@@ -28,10 +28,10 @@ enum LoaderHandle {
 }
 
 /**
-	Loaders can be used to dynamicly load Neko primitives stored in NDLL libraries.
+	Loaders can be used to dynamically load Neko primitives stored in NDLL libraries.
 
 
-	Loaders can be used to dynamicly load other Neko modules (.n bytecode files).
+	Loaders can be used to dynamically load other Neko modules (.n bytecode files).
 	Modules are referenced by names. To lookup the corresponding bytecode file, the
 	default loader first look in its cache, then eventually adds the .n extension
 	to the name and lookup the bytecode in its path.