Skip to content

Commit c0b6507

Browse files
authored
Merge pull request #126 from DaGeibl/bugfix
Added missing bracket
2 parents 7abb834 + a83d3f2 commit c0b6507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lqcut.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function lq_ctc_correction(
109109
pol_fit_func = report_µ.f_fit
110110

111111
# property function for drift time correction
112-
lq_class_func = "$lq_e_corr_expression - " * join(["$(par[i]) * $dt_eff_expression^$(i-1)" for i in eachindex(par)], " - ")
112+
lq_class_func = "$lq_e_corr_expression - " * join(["$(par[i]) * ($dt_eff_expression)^$(i-1)" for i in eachindex(par)], " - ")
113113
lq_class_func_generic = "lq / e - (slope * qdrift / e + y_inter)"
114114

115115
# create result and report

0 commit comments

Comments
 (0)