diff --git a/src/main/java/com/aparapi/Kernel.java b/src/main/java/com/aparapi/Kernel.java
index c901a2b01611f6a3f250d13133df47e01b66e3a4..7b351ddfbca04b4c509866ee9e3756938a6f6ad9 100644
--- a/src/main/java/com/aparapi/Kernel.java
+++ b/src/main/java/com/aparapi/Kernel.java
@@ -2521,7 +2521,7 @@ public abstract class Kernel implements Cloneable {
     * Retrieves a profile report for the last thread that executed this kernel on the given device.<br/>
     * A report will only be available if at least one thread executed the kernel on the device.
     *
-    * <b>Note1: <b>If the profile report is intended to be kept in memory, the object should be cloned with
+    * <b>Note1: </b>If the profile report is intended to be kept in memory, the object should be cloned with
     * {@link com.aparapi.ProfileReport#clone()}<br/>
     *
     * @param device the relevant device where the kernel executed 
@@ -2557,9 +2557,9 @@ public abstract class Kernel implements Cloneable {
    /**
     * Retrieves the most recent complete report available for the current thread calling this method for
     * the current kernel instance and executed on the given device.<br/>
-    * <b>Note1: <b>If the profile report is intended to be kept in memory, the object should be cloned with
+    * <b>Note1: </b>If the profile report is intended to be kept in memory, the object should be cloned with
     * {@link com.aparapi.ProfileReport#clone()}<br/>
-    * <b>Note2: <b/>If the thread didn't execute this kernel on the specified device, it
+    * <b>Note2: </b>If the thread didn't execute this kernel on the specified device, it
     * will return null.
     *    
     * @param device the relevant device where the kernel executed 
diff --git a/src/main/java/com/aparapi/internal/kernel/KernelDeviceProfile.java b/src/main/java/com/aparapi/internal/kernel/KernelDeviceProfile.java
index a45cfd8361595245f654bedaf3b2e18785f01a75..d5ba22767b19b8717e84d88a19d7a5a49921bcc9 100644
--- a/src/main/java/com/aparapi/internal/kernel/KernelDeviceProfile.java
+++ b/src/main/java/com/aparapi/internal/kernel/KernelDeviceProfile.java
@@ -220,9 +220,9 @@ public class KernelDeviceProfile {
    
    /**
     * Retrieves the most recent complete report available for the current thread calling this method.<br/>
-    * <b>Note1: <b>If the profile report is intended to be kept in memory, the object should be cloned with
+    * <b>Note1: </b>If the profile report is intended to be kept in memory, the object should be cloned with
     * {@link com.aparapi.ProfileReport#clone()}<br/>
-    * <b>Note2: <b/>If the thread didn't execute this KernelDeviceProfile instance respective kernel and device, it
+    * <b>Note2: </b>If the thread didn't execute this KernelDeviceProfile instance respective kernel and device, it
     * will return null.
     * @return <ul><li>the profiling report for the current most recent execution</li>
     *             <li>null, if no profiling report is available for such thread</li></ul>
@@ -236,7 +236,7 @@ public class KernelDeviceProfile {
    /**
     * Retrieves the most recent complete report available for the last thread that executed this KernelDeviceProfile
     * instance respective kernel and device.<br/>
-    * <b>Note1: <b>If the profile report is intended to be kept in memory, the object should be cloned with
+    * <b>Note1: </b>If the profile report is intended to be kept in memory, the object should be cloned with
     * {@link com.aparapi.ProfileReport#clone()}<br/>
     * 
     * @return <ul><li>the profiling report for the current most recent execution</li>