Skip to content

Commit e2e4be2

Browse files
committed
Fixed typo in error message
1 parent 52ea777 commit e2e4be2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fast++-read_input.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,12 +734,12 @@ bool read_fluxes(const options_t& opts, input_state_t& state) {
734734
} else {
735735
// Check that zspecs are covered by the redshift grid
736736
if (min(state.zspec) < opts.z_min) {
737-
error("the smallest z_spec is outside of the grid ", min(state.zspec),
737+
error("the smallest z_spec is outside of the grid (", min(state.zspec),
738738
" vs. ", opts.z_min, ")");
739739
return false;
740740
}
741741
if (max(state.zspec) > opts.z_max) {
742-
error("the largest z_spec is outside of the grid ", max(state.zspec),
742+
error("the largest z_spec is outside of the grid (", max(state.zspec),
743743
" vs. ", opts.z_max, ")");
744744
return false;
745745
}

0 commit comments

Comments
 (0)