Browse Source

Merge pull request #3519 from Gama11/typoFix

dynamicly -> dynamically
Dan Korostelev 11 years ago
parent
commit
f1cd79e71d
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.
  */
 /**
-	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.