Skip to content

Commit

Permalink
oops - hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
DominiqueMakowski committed Oct 5, 2022
1 parent f7e2b1e commit ccba460
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/estimate_contrasts.R
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ estimate_contrasts <- function(model,
fixed = fixed,
transform = transform,
method = method,
adjust = adjust,
adjust = p_adjust,
...
)

Expand Down
2 changes: 1 addition & 1 deletion R/estimate_means.R
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ estimate_means <- function(model,
if (p_adjust == "none") {
table_footer <- paste0(table_footer, "\np-values are uncorrected.")
} else {
table_footer <- paste0(table_footer, "\np-value adjustment method: ", parameters::format_p_adjust(adjust))
table_footer <- paste0(table_footer, "\np-value adjustment method: ", parameters::format_p_adjust(p_adjust))
}
}

Expand Down

0 comments on commit ccba460

Please sign in to comment.