diff --git a/src/main/java/com/aparapi/natives/util/NativeUtils.java b/src/main/java/com/aparapi/natives/util/NativeUtils.java
index 5d4a7a041f4300649ed3dbb418b36863114c36c7..53934746beca8f54cc7d693ad3a383302106ddb2 100644
--- a/src/main/java/com/aparapi/natives/util/NativeUtils.java
+++ b/src/main/java/com/aparapi/natives/util/NativeUtils.java
@@ -40,7 +40,7 @@ public class NativeUtils {
      * @param path The path of file inside JAR as absolute path (beginning with '/'), e.g. /package/File.ext
      * @throws IOException If temporary file creation or read/write operation fails
      * @throws IllegalArgumentException If source file (param path) does not exist
-     * @throws IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of {@see File#createTempFile(java.lang.String, java.lang.String)}).
+     * @throws IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of @see File#createTempFile(java.lang.String, java.lang.String)).
      */
     public static void loadLibraryFromJar(String path) throws IOException {
 
@@ -99,4 +99,4 @@ public class NativeUtils {
         // Finally, load the library
         System.load(temp.getAbsolutePath());
     }
-}
\ No newline at end of file
+}