diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-07-03 11:11:01 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-07-04 07:09:30 +0200 |
commit | 4cf0bd4bc41fd5620afdd3b8a436b571d3322cc7 (patch) | |
tree | 614c014bb50c8ebf6a1d75f5dc175801246f870a /sc | |
parent | 585415df64f226503b52d1e2b7971a9c46eb6917 (diff) |
Fix typo
Change-Id: I28a12befa0df6dcfcec7bad39c8691425b5b5d9d
Reviewed-on: https://gerrit.libreoffice.org/56852
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/StatisticsDialogs/RegressionDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/StatisticsDialogs/RegressionDialog.cxx b/sc/source/ui/StatisticsDialogs/RegressionDialog.cxx index f7bdbd3271ba..086ef9b451cd 100644 --- a/sc/source/ui/StatisticsDialogs/RegressionDialog.cxx +++ b/sc/source/ui/StatisticsDialogs/RegressionDialog.cxx @@ -381,7 +381,7 @@ void ScRegressionDialog::WriteRawRegressionResults(AddressWalkerWriter& rOutput, rTemplate.setTemplate(constTemplateLINEST[nRegressionIndex]); rOutput.writeMatrixFormula(rTemplate.getTemplate(), 1 + mnNumIndependentVars, 5); // Add LINEST result components to template - // 1. Add ranges for coeffients and standard errors for indep. vars and the intercept. + // 1. Add ranges for coefficients and standard errors for indep. vars and the intercept. // Note that these two are in the reverse order(m_n, m_n-1, ..., m_1, b) w.r.t what we expect. rTemplate.autoReplaceRange("%COEFFICIENTS_REV_RANGE%", ScRange(rOutput.current(), rOutput.current(mnNumIndependentVars))); rTemplate.autoReplaceRange("%SERRORSX_REV_RANGE%", ScRange(rOutput.current(0, 1), rOutput.current(mnNumIndependentVars, 1))); |