lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master e2edbcb 1/4: Fix a typo


From: Greg Chicares
Subject: [lmi-commits] [lmi] master e2edbcb 1/4: Fix a typo
Date: Sun, 3 Feb 2019 10:40:18 -0500 (EST)

branch: master
commit e2edbcb9fbfbea864e454b1601ab42d53003cd86
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Fix a typo
    
    Incidentally, shorten names, using standard lexical elements.
---
 ill_reg_numeric_summary.mst | 18 +++++++++---------
 pdf_command_wx.cpp          | 30 +++++++++++++++---------------
 2 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/ill_reg_numeric_summary.mst b/ill_reg_numeric_summary.mst
index 31f93c9..6fc3913 100644
--- a/ill_reg_numeric_summary.mst
+++ b/ill_reg_numeric_summary.mst
@@ -52,32 +52,32 @@ keeping the center alignment of the last "p" tag above.
 {{/Composite}}
 
 {{^Composite}}
-    {{#LapseYear_Guaranteed_LT_MaxDuration}}
+    {{#LapseYear_Guar_LT_MaxDur}}
     <p>
         Additional premium will be required
-        in year {{LapseYear_Guaranteed_Plus1}}
+        in year {{LapseYear_Guar_Plus1}}
         or contract will lapse based on guaranteed monthly charges
         and interest rate.
     </p>
-    {{/LapseYear_Guaranteed_LT_MaxDuration}}
+    {{/LapseYear_Guar_LT_MaxDur}}
 
-    {{#LapseYear_Midpoint_LT_MaxDuration}}
+    {{#LapseYear_Mdpt_LT_MaxDur}}
     <p>
         Additional premium will be required
-        in year {{LapseYear_Midpoint_Plus1}}
+        in year {{LapseYear_Mdpt_Plus1}}
         or contract will lapse based on midpoint monthly charges
         and interest rate.
     </p>
-    {{/LapseYear_Midpoint_LT_MaxDuration}}
+    {{/LapseYear_Mdpt_LT_MaxDur}}
 
-    {{#LapseYear_Current_LT_MaxDuration}}
+    {{#LapseYear_Curr_LT_MaxDur}}
     <p>
         Additional premium will be required
-        in year {{LapseYear_Current_Plus1}}
+        in year {{LapseYear_Curr_Plus1}}
         or contract will lapse based on current monthly charges
         and interest rate.
     </p>
-    {{/LapseYear_Current_LT_MaxDuration}}
+    {{/LapseYear_Curr_LT_MaxDur}}
 {{/Composite}}
 
 {{#IsMec}}
diff --git a/pdf_command_wx.cpp b/pdf_command_wx.cpp
index d46f5a9..8d2ed0d 100644
--- a/pdf_command_wx.cpp
+++ b/pdf_command_wx.cpp
@@ -2265,38 +2265,38 @@ class pdf_illustration_naic : public pdf_illustration
             );
 
         auto const max_duration = invar.EndtAge - invar.Age;
-        auto const lapse_year_guaruanteed = ledger.GetGuarFull().LapseYear;
-        auto const lapse_year_midpoint = ledger.GetMdptFull().LapseYear;
-        auto const lapse_year_current = ledger.GetCurrFull().LapseYear;
+        auto const lapse_year_guar = ledger.GetGuarFull().LapseYear;
+        auto const lapse_year_mdpt = ledger.GetMdptFull().LapseYear;
+        auto const lapse_year_curr = ledger.GetCurrFull().LapseYear;
 
         add_variable
-            ("LapseYear_Guaranteed_LT_MaxDuration"
-            ,lapse_year_guaruanteed < max_duration
+            ("LapseYear_Guar_LT_MaxDur"
+            ,lapse_year_guar < max_duration
             );
 
         add_variable
-            ("LapseYear_Guaranteed_Plus1"
-            ,bourn_cast<int>(lapse_year_guaruanteed) + 1
+            ("LapseYear_Guar_Plus1"
+            ,bourn_cast<int>(lapse_year_guar) + 1
             );
 
         add_variable
-            ("LapseYear_Midpoint_LT_MaxDuration"
-            ,lapse_year_midpoint < max_duration
+            ("LapseYear_Mdpt_LT_MaxDur"
+            ,lapse_year_mdpt < max_duration
             );
 
         add_variable
-            ("LapseYear_Midpoint_Plus1"
-            ,bourn_cast<int>(lapse_year_midpoint) + 1
+            ("LapseYear_Mdpt_Plus1"
+            ,bourn_cast<int>(lapse_year_mdpt) + 1
             );
 
         add_variable
-            ("LapseYear_Current_LT_MaxDuration"
-            ,lapse_year_current < max_duration
+            ("LapseYear_Curr_LT_MaxDur"
+            ,lapse_year_curr < max_duration
             );
 
         add_variable
-            ("LapseYear_Current_Plus1"
-            ,bourn_cast<int>(lapse_year_current) + 1
+            ("LapseYear_Curr_Plus1"
+            ,bourn_cast<int>(lapse_year_curr) + 1
             );
 
         // Add all the pages.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]