ExternalLibraryFunction.st
changeset 13333 1463a5e4f9fa
parent 12937 7d5f512fb14a
child 13334 83c2193a234f
--- a/ExternalLibraryFunction.st	Tue Apr 12 16:15:40 2011 +0200
+++ b/ExternalLibraryFunction.st	Tue Apr 12 20:28:34 2011 +0200
@@ -578,7 +578,7 @@
     handle notNil ifTrue:[^ handle ].
 
     filename isAbsolute ifFalse:[
-        "First ask the class deining the ExternalFunction for the location of the dlls ..."
+        "First ask the class defining the ExternalFunction for the location of the dlls ..."
         owningClass dllPath do:[:eachDirectory |
             handle := ObjectFileLoader
                         loadDynamicObject:(eachDirectory asFilename construct:nameString) pathName.
@@ -1492,11 +1492,11 @@
 !ExternalLibraryFunction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.79 2010-07-08 14:16:05 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.80 2011-04-12 18:28:34 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.79 2010-07-08 14:16:05 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.80 2011-04-12 18:28:34 stefan Exp $'
 ! !
 
 ExternalLibraryFunction initialize!