diff --git a/src/main/java/org/orekit/rugged/adjustment/AdjustmentContext.java b/src/main/java/org/orekit/rugged/adjustment/AdjustmentContext.java
index 5a3af203c783011f25235bdb56e7d2e66f844ea7..cd8bf2143ae4dbffbffe566e0114fc940dfb7c23 100644
--- a/src/main/java/org/orekit/rugged/adjustment/AdjustmentContext.java
+++ b/src/main/java/org/orekit/rugged/adjustment/AdjustmentContext.java
@@ -90,10 +90,10 @@ public class AdjustmentContext {
      * {@link LineSensor#getParametersDrivers() getParametersDrivers()} method
      * on the desired sensors must be configured. The parameters that should be
      * estimated must have their {@link ParameterDriver#setSelected(boolean)
-     * selection status} set to {@link true} whereas the parameters that should
+     * selection status} set to {@code true} whereas the parameters that should
      * retain their current value must have their
      * {@link ParameterDriver#setSelected(boolean) selection status} set to
-     * {@link false}. If needed, the {@link ParameterDriver#setValue(double)
+     * {@code false}. If needed, the {@link ParameterDriver#setValue(double)
      * value} of the estimated/selected parameters can also be changed before
      * calling the method, as this value will serve as the initial value in the
      * estimation process.
diff --git a/src/main/java/org/orekit/rugged/api/Rugged.java b/src/main/java/org/orekit/rugged/api/Rugged.java
index e7d2b4652d3f9705f695a091e164aed3ac4e1603..aeb95d14f5d8191f7138547dbd460f9fdfcd330a 100644
--- a/src/main/java/org/orekit/rugged/api/Rugged.java
+++ b/src/main/java/org/orekit/rugged/api/Rugged.java
@@ -622,7 +622,7 @@ public class Rugged {
      * @param dateB current date for sensor B
      * @param pixelB pixel index for sensor B
      * @return distances computed between LOS and to the ground
-     * @exception RuggedException 
+     * @exception RuggedException if frames cannot be computed at date or if date cannot be handled
      * @since 2.0
      */
     public double[] distanceBetweenLOS(final LineSensor sensorA, final AbsoluteDate dateA, final double pixelA,
@@ -695,7 +695,7 @@ public class Rugged {
      * @param pixelB pixel index for sensor B
      * @param generator generator to use for building {@link DerivativeStructure} instances
      * @return distances computed, with derivatives, between LOS and to the ground
-     * @exception RuggedException 
+     * @exception RuggedException if frames cannot be computed at date
      * @see #distanceBetweenLOS(LineSensor, AbsoluteDate, double, SpacecraftToObservedBody, LineSensor, AbsoluteDate, double)
      */
     public DerivativeStructure[] distanceBetweenLOSDerivatives(
diff --git a/src/main/java/org/orekit/rugged/api/RuggedBuilder.java b/src/main/java/org/orekit/rugged/api/RuggedBuilder.java
index 66f2fad22c7bc7c8d2d22db395f00758b90d1507..a425d5989301fbfd96ccc24e95c1eebcda5ad822 100644
--- a/src/main/java/org/orekit/rugged/api/RuggedBuilder.java
+++ b/src/main/java/org/orekit/rugged/api/RuggedBuilder.java
@@ -256,7 +256,7 @@ public class RuggedBuilder {
      *   IGNORE_DEM_USE_ELLIPSOID} does not require
      *   any methods tobe called.</li>
      * </ul>
-     * </p>
+     * 
      * @param algorithmID identifier of algorithm to use for Digital Elevation Model intersection
      * @return the builder instance
      * @see #setDigitalElevationModel(TileUpdater, int)
diff --git a/src/main/java/org/orekit/rugged/intersection/duvenhage/MinMaxTreeTile.java b/src/main/java/org/orekit/rugged/intersection/duvenhage/MinMaxTreeTile.java
index cbf5a47a84004b85dc0656de8b68434f076f58f7..02c1fdc99885a8e6e5a1ed11d18e1fff0f496a2c 100644
--- a/src/main/java/org/orekit/rugged/intersection/duvenhage/MinMaxTreeTile.java
+++ b/src/main/java/org/orekit/rugged/intersection/duvenhage/MinMaxTreeTile.java
@@ -53,7 +53,7 @@ import org.orekit.rugged.utils.Selector;
  * If we consider for example a tall 107 ⨉ 19 raw tile, the min/max kd-tree will
  * have 9 levels:
  * </p>
- * <p>
+ * 
  * <table border="0">
  * <tr BGCOLOR="#EEEEFF">
  *             <td>Level</td>         <td>Number of sub-tiles</td>    <td>Regular sub-tiles dimension</td></tr>
@@ -67,8 +67,7 @@ import org.orekit.rugged.utils.Selector;
  * <tr>  <td align="center">1</td>  <td align="center">  7 ⨉  2</td>        <td align="center">16 ⨉ 16</td>
  * <tr>  <td align="center">0</td>  <td align="center">  7 ⨉  1</td>        <td align="center">16 ⨉ 32</td>
  * </table>
- * </p>
-
+ * <p>
  * @see MinMaxTreeTileFactory
  * @author Luc Maisonobe
  */
@@ -154,7 +153,7 @@ public class MinMaxTreeTile extends SimpleTile {
      * tree level l includes cell (i,j) but not cell (i+1, j+1). In other words,
      * interpolation implies sub-tile boundaries are overshoot by one column to
      * the East and one row to the North when computing min.
-     * </p>
+     * 
      * @param i row index of the cell
      * @param j column index of the cell
      * @param level tree level
@@ -214,7 +213,7 @@ public class MinMaxTreeTile extends SimpleTile {
      * tree level l includes cell (i,j) but not cell (i+1, j+1). In other words,
      * interpolation implies sub-tile boundaries are overshoot by one column to
      * the East and one row to the North when computing max.
-     * </p>
+     * 
      * @param i row index of the cell
      * @param j column index of the cell
      * @param level tree level
diff --git a/src/main/java/org/orekit/rugged/refining/measures/SensorToSensorMapping.java b/src/main/java/org/orekit/rugged/refining/measures/SensorToSensorMapping.java
index e1790e926d467c325bde54a0c6020656a8d1c7ba..efe859137cfaa9d9f004efdd278503990ccd3524 100644
--- a/src/main/java/org/orekit/rugged/refining/measures/SensorToSensorMapping.java
+++ b/src/main/java/org/orekit/rugged/refining/measures/SensorToSensorMapping.java
@@ -28,7 +28,7 @@ import org.orekit.time.AbsoluteDate;
 
 /** Container for mapping sensors pixels of two viewing models.
  * Store the distance between both lines of sight computed with 
- * {@link Rugged#distanceBetweenLOS(LineSensor, AbsoluteDate, double, SpacecraftToObservedBody, LineSensor, AbsoluteDate, double)}
+ * {@link org.orekit.rugged.api.Rugged#distanceBetweenLOS(LineSensor, AbsoluteDate, double, SpacecraftToObservedBody, LineSensor, AbsoluteDate, double)}
  * <p> Constraints in relation to Earth distance can be added.
  * @see SensorMapping
  * @author Lucie LabatAllee
diff --git a/src/main/java/org/orekit/rugged/utils/SpacecraftToObservedBody.java b/src/main/java/org/orekit/rugged/utils/SpacecraftToObservedBody.java
index 1e1e22047d2ff0c26b211f90f31f2e7e66c1efee..75ef62129ec5e3684e1cf200dbda1d5ceaa5fb5e 100644
--- a/src/main/java/org/orekit/rugged/utils/SpacecraftToObservedBody.java
+++ b/src/main/java/org/orekit/rugged/utils/SpacecraftToObservedBody.java
@@ -262,7 +262,7 @@ public class SpacecraftToObservedBody implements Serializable {
     /** Get transform from spacecraft to inertial frame.
      * @param date date of the transform
      * @return transform from spacecraft to inertial frame
-     * @exception RuggedException if spacecraft position or attitude cannot be computed at date
+     * @exception RuggedException if frames cannot be computed at date
      */
     public Transform getScToInertial(final AbsoluteDate date)
         throws RuggedException {