This is an automated email from the ASF dual-hosted git repository.

desruisseaux pushed a commit to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git

commit d30d61af988156b476bccb8b24665f76ffa2e25a
Author: Martin Desruisseaux <martin.desruisse...@geomatys.com>
AuthorDate: Wed Nov 23 10:19:58 2022 +0100

    More replacements of <cite> HTML tags by <em>, because the former was not 
really used for citations.
---
 .../src/main/java/org/apache/sis/feature/AbstractAssociation.java     | 4 ++--
 .../src/main/java/org/apache/sis/feature/AbstractAttribute.java       | 4 ++--
 core/sis-feature/src/main/java/org/apache/sis/feature/Field.java      | 4 ++--
 .../src/main/java/org/apache/sis/feature/MultiValuedAssociation.java  | 4 ++--
 .../src/main/java/org/apache/sis/feature/MultiValuedAttribute.java    | 4 ++--
 .../java/org/apache/sis/feature/builder/AttributeTypeBuilder.java     | 4 ++--
 .../main/java/org/apache/sis/feature/builder/FeatureTypeBuilder.java  | 2 +-
 .../src/main/java/org/apache/sis/metadata/iso/ISOMetadata.java        | 2 +-
 .../java/org/apache/sis/metadata/iso/acquisition/package-info.java    | 2 +-
 .../main/java/org/apache/sis/metadata/iso/citation/package-info.java  | 2 +-
 .../java/org/apache/sis/metadata/iso/constraint/package-info.java     | 2 +-
 .../main/java/org/apache/sis/metadata/iso/content/package-info.java   | 2 +-
 .../java/org/apache/sis/metadata/iso/distribution/package-info.java   | 2 +-
 .../main/java/org/apache/sis/metadata/iso/extent/package-info.java    | 2 +-
 .../metadata/iso/identification/DefaultRepresentativeFraction.java    | 2 +-
 .../java/org/apache/sis/metadata/iso/identification/package-info.java | 2 +-
 .../main/java/org/apache/sis/metadata/iso/lineage/package-info.java   | 2 +-
 .../java/org/apache/sis/metadata/iso/maintenance/package-info.java    | 2 +-
 .../src/main/java/org/apache/sis/metadata/iso/package-info.java       | 2 +-
 .../main/java/org/apache/sis/metadata/iso/quality/package-info.java   | 2 +-
 .../main/java/org/apache/sis/metadata/iso/spatial/package-info.java   | 2 +-
 .../java/org/apache/sis/parameter/DefaultParameterValueGroup.java     | 2 +-
 .../java/org/apache/sis/referencing/AbstractIdentifiedObject.java     | 2 +-
 .../src/main/java/org/apache/sis/util/collection/TreeTable.java       | 2 +-
 24 files changed, 30 insertions(+), 30 deletions(-)

diff --git 
a/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAssociation.java
 
b/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAssociation.java
index cbd018b621..136c58ec32 100644
--- 
a/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAssociation.java
+++ 
b/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAssociation.java
@@ -142,13 +142,13 @@ public abstract class AbstractAssociation extends 
Field<Feature> implements Feat
 
     /**
      * Returns all features, or an empty collection if none.
-     * The returned collection is <cite>live</cite>: changes in the returned 
collection
+     * The returned collection is <em>live</em>: changes in the returned 
collection
      * will be reflected immediately in this {@code Association} instance, and 
conversely.
      *
      * <p>The default implementation returns a collection which will delegate 
its work to
      * {@link #getValue()} and {@link #setValue(Object)}.</p>
      *
-     * @return the features in a <cite>live</cite> collection.
+     * @return the features in a <em>live</em> collection.
      */
     @Override
     public Collection<Feature> getValues() {
diff --git 
a/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAttribute.java 
b/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAttribute.java
index 731e7bdd35..90ffb9fc05 100644
--- 
a/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAttribute.java
+++ 
b/core/sis-feature/src/main/java/org/apache/sis/feature/AbstractAttribute.java
@@ -222,13 +222,13 @@ public abstract class AbstractAttribute<V> extends 
Field<V> implements Attribute
 
     /**
      * Returns all attribute values, or an empty collection if none.
-     * The returned collection is <cite>live</cite>: changes in the returned 
collection
+     * The returned collection is <em>live</em>: changes in the returned 
collection
      * will be reflected immediately in this {@code Attribute} instance, and 
conversely.
      *
      * <p>The default implementation returns a collection which will delegate 
its work to
      * {@link #getValue()} and {@link #setValue(Object)}.</p>
      *
-     * @return the attribute values in a <cite>live</cite> collection.
+     * @return the attribute values in a <em>live</em> collection.
      */
     @Override
     public Collection<V> getValues() {
diff --git a/core/sis-feature/src/main/java/org/apache/sis/feature/Field.java 
b/core/sis-feature/src/main/java/org/apache/sis/feature/Field.java
index 9a6e94f678..2fede8cdba 100644
--- a/core/sis-feature/src/main/java/org/apache/sis/feature/Field.java
+++ b/core/sis-feature/src/main/java/org/apache/sis/feature/Field.java
@@ -69,10 +69,10 @@ abstract class Field<V> implements Property {
 
     /**
      * Returns all features or attribute values, or an empty collection if 
none.
-     * The returned collection is <cite>live</cite>: changes in the returned 
collection
+     * The returned collection is <em>live</em>: changes in the returned 
collection
      * will be reflected immediately in this {@code Field} instance, and 
conversely.
      *
-     * @return the features or attribute values in a <cite>live</cite> 
collection.
+     * @return the features or attribute values in a <em>live</em> collection.
      */
     public Collection<V> getValues() {
         return new PropertySingleton<>(this);
diff --git 
a/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAssociation.java
 
b/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAssociation.java
index f93b2df691..bfcecaecfb 100644
--- 
a/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAssociation.java
+++ 
b/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAssociation.java
@@ -104,10 +104,10 @@ final class MultiValuedAssociation extends 
AbstractAssociation {
 
     /**
      * Returns all features, or an empty collection if none.
-     * The returned collection is <cite>live</cite>: changes in the returned 
collection
+     * The returned collection is <em>live</em>: changes in the returned 
collection
      * will be reflected immediately in this {@code Association} instance, and 
conversely.
      *
-     * @return the features in a <cite>live</cite> collection.
+     * @return the features in a <em>live</em> collection.
      */
     @Override
     @SuppressWarnings("ReturnOfCollectionOrArrayField")
diff --git 
a/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAttribute.java
 
b/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAttribute.java
index 68e7afba7f..7ce6441ee6 100644
--- 
a/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAttribute.java
+++ 
b/core/sis-feature/src/main/java/org/apache/sis/feature/MultiValuedAttribute.java
@@ -122,10 +122,10 @@ final class MultiValuedAttribute<V> extends 
AbstractAttribute<V> implements Clon
 
     /**
      * Returns all attribute values, or an empty collection if none.
-     * The returned collection is <cite>live</cite>: changes in the returned 
collection
+     * The returned collection is <em>live</em>: changes in the returned 
collection
      * will be reflected immediately in this {@code Attribute} instance, and 
conversely.
      *
-     * @return the attribute values in a <cite>live</cite> collection.
+     * @return the attribute values in a <em>live</em> collection.
      */
     @Override
     @SuppressWarnings("ReturnOfCollectionOrArrayField")
diff --git 
a/core/sis-feature/src/main/java/org/apache/sis/feature/builder/AttributeTypeBuilder.java
 
b/core/sis-feature/src/main/java/org/apache/sis/feature/builder/AttributeTypeBuilder.java
index b3d2aca0d7..76aad8dd3a 100644
--- 
a/core/sis-feature/src/main/java/org/apache/sis/feature/builder/AttributeTypeBuilder.java
+++ 
b/core/sis-feature/src/main/java/org/apache/sis/feature/builder/AttributeTypeBuilder.java
@@ -535,7 +535,7 @@ public final class AttributeTypeBuilder<V> extends 
PropertyTypeBuilder {
 
     /**
      * Returns a view of all characteristics added to the {@code 
AttributeType} to build.
-     * The returned list is <cite>live</cite>: changes in this builder are 
reflected in that list and conversely.
+     * The returned list is <em>live</em>: changes in this builder are 
reflected in that list and conversely.
      * However, the returned list allows only {@linkplain List#remove(Object) 
remove} operations;
      * new characteristics can be added only by calls to one of the {@code 
set/addCharacteristic(…)} methods.
      *
@@ -553,7 +553,7 @@ public final class AttributeTypeBuilder<V> extends 
PropertyTypeBuilder {
 
     /**
      * Returns the roles that the attribute play in the predefined operations 
managed by {@code AttributeTypeBuilder}.
-     * The set returned by this method is <cite>live</cite>: additions or 
removal on that set are reflected back on
+     * The set returned by this method is <em>live</em>: additions or removal 
on that set are reflected back on
      * this builder, and conversely.
      *
      * @return the roles that the attribute play in the predefined operations 
managed by {@code AttributeTypeBuilder}.
diff --git 
a/core/sis-feature/src/main/java/org/apache/sis/feature/builder/FeatureTypeBuilder.java
 
b/core/sis-feature/src/main/java/org/apache/sis/feature/builder/FeatureTypeBuilder.java
index 84ceae4ef9..d4ea848dcd 100644
--- 
a/core/sis-feature/src/main/java/org/apache/sis/feature/builder/FeatureTypeBuilder.java
+++ 
b/core/sis-feature/src/main/java/org/apache/sis/feature/builder/FeatureTypeBuilder.java
@@ -612,7 +612,7 @@ public class FeatureTypeBuilder extends TypeBuilder {
      * Returns a view of all attributes and associations added to the {@code 
FeatureType} to build.
      * This list contains only properties declared explicitly to this builder;
      * it does not include properties inherited from {@linkplain 
#getSuperTypes() super-types}.
-     * The returned list is <cite>live</cite>: changes in this builder are 
reflected in that list and conversely.
+     * The returned list is <em>live</em>: changes in this builder are 
reflected in that list and conversely.
      * However, the returned list allows only {@linkplain List#remove(Object) 
remove} operations;
      * new attributes or associations can be added only by calls to one of the 
{@code addAttribute(…)}
      * or {@code addAssociation(…)} methods. Removal operations never affect 
the super-types.
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/ISOMetadata.java 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/ISOMetadata.java
index cb6a6ef5af..14cb8db69d 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/ISOMetadata.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/ISOMetadata.java
@@ -162,7 +162,7 @@ public class ISOMetadata extends ModifiableMetadata 
implements IdentifiedObject,
      * {@inheritDoc}
      *
      * <p>The default implementation returns a wrapper around the {@link 
#identifiers} list.
-     * That map is <cite>live</cite>: changes in the identifiers list will be 
reflected in the map,
+     * That map is <em>live</em>: changes in the identifiers list will be 
reflected in the map,
      * and conversely.</p>
      */
     @Override
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/acquisition/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/acquisition/package-info.java
index 7bbdc3e817..ef0f3de0c4 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/acquisition/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/acquisition/package-info.java
@@ -81,7 +81,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Cédric Briançon (Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/citation/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/citation/package-info.java
index 9dfde30aad..cefc7e6c01 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/citation/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/citation/package-info.java
@@ -80,7 +80,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/constraint/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/constraint/package-info.java
index 7dc9ea387f..0fd540e5d2 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/constraint/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/constraint/package-info.java
@@ -57,7 +57,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/content/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/content/package-info.java
index c919a5551f..eed8aa9aa4 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/content/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/content/package-info.java
@@ -74,7 +74,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/distribution/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/distribution/package-info.java
index 81e5fcbe02..08f0312526 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/distribution/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/distribution/package-info.java
@@ -61,7 +61,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/extent/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/extent/package-info.java
index 7be533e4a1..9734b96000 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/extent/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/extent/package-info.java
@@ -128,7 +128,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/DefaultRepresentativeFraction.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/DefaultRepresentativeFraction.java
index a13feb9e60..c635e21db8 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/DefaultRepresentativeFraction.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/DefaultRepresentativeFraction.java
@@ -372,7 +372,7 @@ public class DefaultRepresentativeFraction extends Number 
implements Representat
 
     /**
      * Returns a map view of the {@linkplain #getIdentifiers() identifiers} 
collection as (<var>authority</var>,
-     * <var>code</var>) entries. That map is <cite>live</cite>: changes in the 
identifiers list will be reflected
+     * <var>code</var>) entries. That map is <em>live</em>: changes in the 
identifiers list will be reflected
      * in the map, and conversely.
      */
     @Override
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/package-info.java
index 2a141c935f..86241d9024 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/identification/package-info.java
@@ -89,7 +89,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/package-info.java
index 2326852e36..2b5c49fd82 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/package-info.java
@@ -59,7 +59,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/maintenance/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/maintenance/package-info.java
index ea1b2e8a5d..874c0afc56 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/maintenance/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/maintenance/package-info.java
@@ -55,7 +55,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object. Noticeable exceptions to 
this rule are <cite>union</cite>
  * structures, for which only one property can be non-empty in the same 
object.</p>
  *
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/package-info.java 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/package-info.java
index 6e89b090bb..fa8d59c5e0 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/package-info.java
@@ -75,7 +75,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/quality/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/quality/package-info.java
index 8c56bb152a..f5bf8095e8 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/quality/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/quality/package-info.java
@@ -31,7 +31,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/spatial/package-info.java
 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/spatial/package-info.java
index d89691fc40..6247c68e01 100644
--- 
a/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/spatial/package-info.java
+++ 
b/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/spatial/package-info.java
@@ -77,7 +77,7 @@
  * Note that non-null values may be {@link org.apache.sis.xml.NilObject}s.</p>
  *
  * <p>Unless the metadata object has been marked as unmodifiable and unless 
otherwise noted in the Javadoc,
- * all collections returned by getter methods are <cite>live</cite>: adding 
new elements in the collection
+ * all collections returned by getter methods are <em>live</em>: adding new 
elements in the collection
  * modify directly the underlying metadata object.</p>
  *
  * @author  Martin Desruisseaux (IRD, Geomatys)
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/parameter/DefaultParameterValueGroup.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/parameter/DefaultParameterValueGroup.java
index 53c67eef6b..4d7c64be86 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/parameter/DefaultParameterValueGroup.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/parameter/DefaultParameterValueGroup.java
@@ -189,7 +189,7 @@ public class DefaultParameterValueGroup extends Parameters 
implements LenientCom
     }
 
     /**
-     * Returns the values in this group. The returned list is 
<cite>live</cite>:
+     * Returns the values in this group. The returned list is <em>live</em>:
      * changes in this list are reflected on this {@code ParameterValueGroup}, 
and conversely.
      *
      * <h4>Restrictions</h4>
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/AbstractIdentifiedObject.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/AbstractIdentifiedObject.java
index 7f07c56408..0b9b14578f 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/AbstractIdentifiedObject.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/AbstractIdentifiedObject.java
@@ -1016,7 +1016,7 @@ public class AbstractIdentifiedObject extends 
FormattableObject implements Ident
      * Returns the {@link #name} and all aliases which are also instance of 
{@link Identifier}.
      * The latter happen often in SIS implementation since many aliases are 
instance of {@link NamedIdentifier}.
      *
-     * <p>The returned collection is <cite>live</cite>: adding elements in 
that collection will modify this
+     * <p>The returned collection is <em>live</em>: adding elements in that 
collection will modify this
      * {@code AbstractIdentifiedObject} instance. This is needed for 
unmarshalling with JAXB and should not
      * be used in other context.</p>
      *
diff --git 
a/core/sis-utility/src/main/java/org/apache/sis/util/collection/TreeTable.java 
b/core/sis-utility/src/main/java/org/apache/sis/util/collection/TreeTable.java
index 132bf6c542..0c47f5cbcc 100644
--- 
a/core/sis-utility/src/main/java/org/apache/sis/util/collection/TreeTable.java
+++ 
b/core/sis-utility/src/main/java/org/apache/sis/util/collection/TreeTable.java
@@ -150,7 +150,7 @@ public interface TreeTable {
 
         /**
          * Returns the children of this node. The returned collection may or 
may not be modifiable, at
-         * implementation choice. If the collection is modifiable, then it 
shall be <cite>live</cite>,
+         * implementation choice. If the collection is modifiable, then it 
shall be <em>live</em>,
          * i.e. any modification to the returned collection are reflected 
immediately in the tree.
          * This allows addition or removal of child nodes as below:
          *

Reply via email to