Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace user-define with user-defined #4261

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fortran/test/tH5T.F90
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ END SUBROUTINE enumtest
!-------------------------------------------------------------------------
! * Function: test_derived_flt
! *
! * Purpose: Tests user-define and query functions of floating-point types.
! * Purpose: Tests user-defined and query functions of floating-point types.
! * test h5tget/set_fields_f.
! *
! * Return: Success: 0
Expand Down
12 changes: 6 additions & 6 deletions test/dt_arith.c
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ test_particular_fp_integer(void)
/*-------------------------------------------------------------------------
* Function: test_derived_flt
*
* Purpose: Tests user-define and query functions of floating-point types.
* Purpose: Tests user-defined and query functions of floating-point types.
*
* Return: Success: 0
*
Expand All @@ -903,7 +903,7 @@ test_derived_flt(void)
char str[256]; /*message string */
unsigned int i, j;

TESTING("user-define and query functions of floating-point types");
TESTING("user-defined and query functions of floating-point types");

/* Create File */
h5_fixname(FILENAME[0], H5P_DEFAULT, filename, sizeof filename);
Expand Down Expand Up @@ -1324,7 +1324,7 @@ test_derived_flt(void)
/*-------------------------------------------------------------------------
* Function: test_derived_integer
*
* Purpose: Tests user-define and query functions of integer types.
* Purpose: Tests user-defined and query functions of integer types.
*
* Return: Success: 0
*
Expand All @@ -1347,7 +1347,7 @@ test_derived_integer(void)
char str[256]; /*message string */
unsigned int i, j;

TESTING("user-define and query functions of integer types");
TESTING("user-defined and query functions of integer types");

/* Create File */
h5_fixname(FILENAME[1], H5P_DEFAULT, filename, sizeof filename);
Expand Down Expand Up @@ -5990,11 +5990,11 @@ main(void)
/* Test H5Tcompiler_conv() for querying hard conversion. */
nerrors += (unsigned long)test_hard_query();

/* Test user-define, query functions and software conversion
/* Test user-defined, query functions and software conversion
* for user-defined floating-point types */
nerrors += (unsigned long)test_derived_flt();

/* Test user-define, query functions and software conversion
/* Test user-defined, query functions and software conversion
* for user-defined integer types */
nerrors += (unsigned long)test_derived_integer();

Expand Down
Loading