aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPjotr Prins2017-08-22 08:34:32 +0000
committerPjotr Prins2017-08-22 08:34:32 +0000
commit48da44bf2da05f76008b083923ddf5701b9c029a (patch)
treeef6a14e0f5d54c97f17aab9e28ddf464754372d7 /src
parente6c6ed62b2ef3f428c9646d94d3d011286d02922 (diff)
downloadpangemma-48da44bf2da05f76008b083923ddf5701b9c029a.tar.gz
Fix typo intecept -> intercept
Diffstat (limited to 'src')
-rw-r--r--src/param.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/param.cpp b/src/param.cpp
index d1879d1..c81eaf5 100644
--- a/src/param.cpp
+++ b/src/param.cpp
@@ -2022,12 +2022,12 @@ void PARAM::CheckCvt() {
}
}
- // Add an intecept term if needed.
+ // Add an intercept term if needed.
if (n_cvt == set_remove.size()) {
indicator_cvt.clear();
n_cvt = 1;
} else if (flag_ipt == 0) {
- cout << "no intecept term is found in the cvt file. "
+ cout << "no intercept term is found in the cvt file. "
<< "a column of 1s is added." << endl;
for (vector<int>::size_type i = 0; i < indicator_idv.size(); ++i) {
if (indicator_idv[i] == 0 || indicator_cvt[i] == 0) {