summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-01-24 21:41:03 (GMT)
committerGitHub <noreply@github.com>2022-01-24 21:41:03 (GMT)
commit7f214d6e0ded27bc44d354396eb72ff2f65f1f03 (patch)
treefa13d8d2fa704eee096dd2dda7e27f82867a74d0 /examples
parentb88cfdbfc9a6f2ff737d73ba4cb4931e5ffe2e74 (diff)
downloadhdf5-7f214d6e0ded27bc44d354396eb72ff2f65f1f03.zip
hdf5-7f214d6e0ded27bc44d354396eb72ff2f65f1f03.tar.gz
hdf5-7f214d6e0ded27bc44d354396eb72ff2f65f1f03.tar.bz2
Merge various cleanup java test, test files, comments (#1365)
Plus some spelling corrections
Diffstat (limited to 'examples')
-rw-r--r--examples/h5_extlink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/h5_extlink.c b/examples/h5_extlink.c
index f9d4046..61fd589 100644
--- a/examples/h5_extlink.c
+++ b/examples/h5_extlink.c
@@ -414,14 +414,14 @@ UD_hard_create(const char *link_name, hid_t loc_group, const void *udata, size_t
token = *((H5O_token_t *)udata);
- //! [H5Open_by_token_snip]
+ //! [H5Oopen_by_token_snip]
/* Open the object this link points to so that we can increment
* its reference count. This also ensures that the token passed
* in points to a real object (although this check is not perfect!) */
target_obj = H5Oopen_by_token(loc_group, token);
- //! [H5Open_by_token_snip]
+ //! [H5Oopen_by_token_snip]
if (target_obj < 0) {
ret_value = -1;