Browse Source

dynamicly -> dynamically

Gama11 11 years ago
parent
commit
875fb2aa7f
2 changed files with 3 additions and 3 deletions
  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.
  * 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.
 	abstract interface in an untyped manner. Use with care.
 **/
 **/
 extern class Reflect {
 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
 	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
 	default loader first look in its cache, then eventually adds the .n extension
 	to the name and lookup the bytecode in its path.
 	to the name and lookup the bytecode in its path.