diff options
author | Kenneth Russel <[email protected]> | 2006-12-04 07:46:08 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-12-04 07:46:08 +0000 |
commit | eb5a2d729f3d6bc6876c68dfc8b449a3ac6b3dce (patch) | |
tree | d708d545f548854e10d52a50cd3f2603bbfe9131 /src | |
parent | b87d73aae8ce3c306644a6964545b89f1eab1189 (diff) |
Fixed typo in comment
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@52 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'src')
-rwxr-xr-x | src/java/com/sun/gluegen/runtime/NativeLibrary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/sun/gluegen/runtime/NativeLibrary.java b/src/java/com/sun/gluegen/runtime/NativeLibrary.java index 20419d9..8ff28d3 100755 --- a/src/java/com/sun/gluegen/runtime/NativeLibrary.java +++ b/src/java/com/sun/gluegen/runtime/NativeLibrary.java @@ -222,7 +222,7 @@ public class NativeLibrary { if (libName == null) return paths; - // Allow user's full path specification to override our building pf paths + // Allow user's full path specification to override our building of paths File file = new File(libName); if (file.isAbsolute()) { paths.add(libName); |