diff --git a/models/Application_examples/Application_Process.mp b/models/Application_examples/Application_Process.mp
index 852b1a5989d65066f593a410f65320af5b731890..f4c690616dbc17717d3442f76612004d06bde63a 100644
--- a/models/Application_examples/Application_Process.mp
+++ b/models/Application_examples/Application_Process.mp
@@ -3,7 +3,7 @@
 │*│ │ Model of Application Process                       │ │
 │*│ │  Created by Mikhail Auguston in 2018.              │ │
 │*│ │  Edited by Pamela Dyer in September, 2021.         │ │
-│*│ │  Probabilties and timing attributes, reports,      │ │
+│*│ │  Probabilities and timing attributes, reports,     │ │
 │*│ │   tables, and charts added by Kristin Giammarco in │ │
 │*│ │   January, 2022.                                   │ │
 │*│ └────────────────────────────────────────────────────┘ │
@@ -11,7 +11,7 @@
 │*│ ┌─[ Purpose ]────────────────────────────────────────┐ │
 │*│ │ To provide a template for an application approval  │ │
 │*│ │ process involving multiple levels of approval, and │ │
-│*│ │ demonstrate an example of a schedule analyis that  │ │
+│*│ │ demonstrate an example of a schedule analysis that │ │
 │*│ │ takes trace probability into account.              │ │
 │*│ └────────────────────────────────────────────────────┘ │
 │*│                                                        │
@@ -241,10 +241,10 @@ WITHIN trace_data{
         DO 
     	weighted_duration +:= 
     		Node$x.trace_duration/8 * #$$TP(Node$x.trace_unique_id);
-    	IF Node$x.trace_duration == GLOBAL.accumulated_max_duration 
+    	IF Node$x.trace_duration == accumulated_max_duration 
     		THEN d_max:= true; 
     		ELSE d_max:= false; FI;
-    	IF Node$x.trace_duration == GLOBAL.accumulated_min_duration 
+    	IF Node$x.trace_duration == accumulated_min_duration 
     		THEN d_min:= true; 
     		ELSE d_min:= false; FI;
     
@@ -259,15 +259,14 @@ WITHIN trace_data{
         OD;
 };
 
-/* Comment in the following SHOW statement to view table of trace data */
-/*SHOW trace_data_summary;*/
+/* This table shows that there are 2 maximums and 1 minimum. */
+SHOW trace_data_summary;
 
 
 /* Create summary report */
 
 REPORT Duration_Statistics_Report {
     		TITLE ("Scope "$$scope" Duration Statistics"); };
-	CLEAR Duration_Statistics_Report;
 
 SAY("There are " #$$TRACE " traces total." )
 			=> Duration_Statistics_Report;