Skip to content

Commit c77b245

Browse files
committed
Typo fixes
1 parent bae6ffa commit c77b245

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/BaseBinaryStar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3393,7 +3393,7 @@ EVOLUTION_STATUS BaseBinaryStar::Evolve() {
33933393
printSysDetailedOutputRec |= m_DetailedOutputAgeFlags2[threshold] < 0.0 && m_Star2->Age() >= thresholdValue; // star2
33943394

33953395
// record the current age of the stars in the threshold flag - this is how we check for re-crossing a threshold
3396-
// if the age of a star has dropped below the threshold value, we reset the theshold flag for that star
3396+
// if the age of a star has dropped below the threshold value, we reset the threshold flag for that star
33973397
// the check will fail if the star hasn't crossed the threshold already, but the flag will be -1.0 anyway
33983398
m_DetailedOutputAgeFlags1[threshold] = (m_Star1->Age() < thresholdValue) ? -1.0 : m_Star1->Age();
33993399
m_DetailedOutputAgeFlags2[threshold] = (m_Star2->Age() < thresholdValue) ? -1.0 : m_Star2->Age();

src/Star.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ EVOLUTION_STATUS Star::Evolve(const long int p_Id) {
484484
printSysDetailedOutputRec |= m_DetailedOutputAgeFlags[threshold] < 0.0 && m_Star->Age() >= thresholdValue;
485485

486486
// record the current age of the star in the threshold flag - this is how we check for re-crossing a threshold
487-
// if the age of the star has dropped below the threshold value, we reset the theshold flag for the star
487+
// if the age of the star has dropped below the threshold value, we reset the threshold flag for the star
488488
// the check will fail if the star hasn't crossed the threshold already, but the flag will be -1.0 anyway
489489
m_DetailedOutputAgeFlags[threshold] = (m_Star->Age() < thresholdValue) ? -1.0 : m_Star->Age();
490490
}

src/changelog.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1563,8 +1563,8 @@
15631563
// --logfile-system-detailed-output-record-types: specifies the enabled record types for System Detailed Output logfile (default is all types)
15641564
// --system-detailed-output-age-thresholds: specifies the age thresholds for System Detailed Output logfile
15651565
// --system-detailed-output-time-thresholds: specifies the time thresholds for System Detailed Output logfile
1566-
// - Removed stashing to SSE SNe file - printing is now done directly (stashing no loger required since we now don'r save/revert).
1567-
// I was going to remove the save/revert state functios - we don't need them (we have clone functions), but I left them in for now (just in case we find a need...).
1566+
// - Removed stashing to SSE SNe file - printing is now done directly (stashing no longer required since we now don'r save/revert).
1567+
// I was going to remove the save/revert state functions - we don't need them (we have clone functions), but I left them in for now (just in case we find a need...).
15681568

15691569
const std::string VERSION_STRING = "03.19.00";
15701570

0 commit comments

Comments
 (0)