Skip to content

Commit

Permalink
fix spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
uecker committed Jan 25, 2025
1 parent 07b9a5a commit 246edc6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
16 changes: 10 additions & 6 deletions src/ismrm/read.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,28 +388,32 @@ void ismrm_read(const char* datafile, struct isrmrm_config_s* config, int N, lon
if (MD_IS_SET(acq.head.flags, (ISMRMRD_ACQ_IS_NOISE_MEASUREMENT - 1))) {

if (NULL != buf)
debug_printf(DP_DEBUG1, "Aqcuisition %d is noise measurement! -> Skipped\n", i);
debug_printf(DP_DEBUG1, "Acquisition %d is noise measurement! -> Skipped\n", i);

skip = true;
}

if (MD_IS_SET(acq.head.flags, (ISMRMRD_ACQ_IS_PARALLEL_CALIBRATION - 1))) {

if (NULL != buf)
debug_printf(DP_DEBUG1, "Aqcuisition %d is calibration measurement! -> Skipped\n", i);
debug_printf(DP_DEBUG1, "Acquisition %d is calibration measurement! -> Skipped\n", i);

skip = true;
}

if (MD_IS_SET(acq.head.flags, (ISMRMRD_ACQ_IS_NAVIGATION_DATA - 1))) {

if (NULL != buf)
debug_printf(DP_DEBUG1, "Aqcuisition %d is navigation measurement! -> Skipped\n", i);
debug_printf(DP_DEBUG1, "Acquisition %d is navigation measurement! -> Skipped\n", i);

skip = true;
}

if (MD_IS_SET(acq.head.flags, (ISMRMRD_ACQ_IS_PHASECORR_DATA - 1))) {

if (NULL != buf)
debug_printf(DP_DEBUG1, "Aqcuisition %d is phase correction measurement! -> Skipped\n", i);
debug_printf(DP_DEBUG1, "Acquisition %d is phase correction measurement! -> Skipped\n", i);

skip = true;
}

Expand All @@ -420,7 +424,7 @@ void ismrm_read(const char* datafile, struct isrmrm_config_s* config, int N, lon
if (warn && (NULL != buf)) {

warn = false;
debug_printf(DP_WARN, "Aqcuisition %d is reverse! This is probably not handled correctly! Further warnings will be suppressed!\n", i);
debug_printf(DP_WARN, "Acquisition %d is reverse! This is probably not handled correctly! Further warnings will be suppressed!\n", i);
}
}

Expand Down Expand Up @@ -512,4 +516,4 @@ void ismrm_print_xml(const char* filename)
xfree(xml);

ismrmrd_close_dataset(&d);
}
}
2 changes: 1 addition & 1 deletion src/python/pyBART.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ numpy_farray_t load_cfl_python(const std::string& name)
}
else {
debug_printf(DP_DEBUG4,
" re-using existing Python capsule as base "
" reusing existing Python capsule as base "
"object\n");
}

Expand Down

0 comments on commit 246edc6

Please sign in to comment.