summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2022-08-10 20:57:26 (GMT)
committerGitHub <noreply@github.com>2022-08-10 20:57:26 (GMT)
commit174505ca3c27daa30d8affd63bda07ad24f126c5 (patch)
tree8d5a1aa014056b6c05fd7ea5b5906ca2f65b5afd /java
parente794dc5ec44ea73c92a6d3937e86307e87d277ae (diff)
downloadhdf5-174505ca3c27daa30d8affd63bda07ad24f126c5.zip
hdf5-174505ca3c27daa30d8affd63bda07ad24f126c5.tar.gz
hdf5-174505ca3c27daa30d8affd63bda07ad24f126c5.tar.bz2
Fix typos found in the rest of the hdf5 code-base (#1985)
* Fix typos found in the rest of the hdf5 code-base * Typo in tool.cmake * Revert "Typo in tool.cmake" This reverts commit 06b8403d99757c7d20f1eed530cf317c3d84de4b. * Fix clang-format styling
Diffstat (limited to 'java')
-rw-r--r--java/src/hdf/hdf5lib/H5.java8
-rw-r--r--java/src/hdf/hdf5lib/exceptions/HDF5LibraryException.java4
2 files changed, 6 insertions, 6 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java
index ecf5eff..56e2170 100644
--- a/java/src/hdf/hdf5lib/H5.java
+++ b/java/src/hdf/hdf5lib/H5.java
@@ -2269,7 +2269,7 @@ public class H5 implements java.io.Serializable {
* @param src_did
* the identifier of the source dataset
* @param dst_did
- * the identifier of the destinaiton dataset
+ * the identifier of the destination dataset
*
* @return a non-negative value if successful
*
@@ -9788,7 +9788,7 @@ public class H5 implements java.io.Serializable {
* @param expression
* IN: Pointer to the null-terminated data transform expression
*
- * @return a non-negative valule if successful; otherwise returns a negative value.
+ * @return a non-negative value if successful; otherwise returns a negative value.
*
* @exception HDF5LibraryException
* Error from the HDF-5 Library.
@@ -10007,7 +10007,7 @@ public class H5 implements java.io.Serializable {
* @param crt_intermed_group
* IN: Flag specifying whether to create intermediate groups upon the creation of an object
*
- * @return a non-negative valule if successful; otherwise returns a negative value.
+ * @return a non-negative value if successful; otherwise returns a negative value.
*
* @exception HDF5LibraryException
* Error from the HDF-5 Library.
@@ -13654,7 +13654,7 @@ public class H5 implements java.io.Serializable {
public synchronized static native int H5Tget_sign(long type_id) throws HDF5LibraryException;
/**
- * H5Tset_sign sets the sign proprety for an integer type.
+ * H5Tset_sign sets the sign property for an integer type.
*
* @param type_id
* IN: Identifier of datatype to set.
diff --git a/java/src/hdf/hdf5lib/exceptions/HDF5LibraryException.java b/java/src/hdf/hdf5lib/exceptions/HDF5LibraryException.java
index 2a4c8c7..7c9773f 100644
--- a/java/src/hdf/hdf5lib/exceptions/HDF5LibraryException.java
+++ b/java/src/hdf/hdf5lib/exceptions/HDF5LibraryException.java
@@ -350,7 +350,7 @@ public class HDF5LibraryException extends HDF5Exception {
/**
* Prints this <code>HDF5LibraryException</code>, the HDF-5 Library error
- * stack, and and the Java stack trace to the standard error stream.
+ * stack, and the Java stack trace to the standard error stream.
*/
@Override
public void printStackTrace()
@@ -362,7 +362,7 @@ public class HDF5LibraryException extends HDF5Exception {
/**
* Prints this <code>HDF5LibraryException</code> the HDF-5 Library error
- * stack, and and the Java stack trace to the specified print stream.
+ * stack, and the Java stack trace to the specified print stream.
*
* @param f
* the file print stream.