@@ -100,7 +100,7 @@ private void OnMouseDown(object sender, MouseButtonEventArgs e)
100100 }
101101
102102 /// <summary>
103- /// Method that will be called when all logs of a certain type have been cleared
103+ /// Method that is called when all logs of a certain type have been cleared
104104 /// </summary>
105105 /// <param name="clearedList">The list of Log objects that were removed</param>
106106 private void LogTypeClearedEvent ( List < Log > clearedList )
@@ -126,7 +126,7 @@ private void FillLogView()
126126 }
127127
128128 /// <summary>
129- /// Method that will be called when a Log object was removed
129+ /// Method that is called when a Log object was removed
130130 /// </summary>
131131 /// <param name="log">The Log object that was removed</param>
132132 private void LogDeletedEvent ( Log log )
@@ -139,7 +139,7 @@ private void LogDeletedEvent(Log log)
139139 }
140140
141141 /// <summary>
142- /// Method that will be called when all logs were removed
142+ /// Method that is called when all logs were removed
143143 /// </summary>
144144 private void LogsClearedEvent ( )
145145 {
@@ -150,7 +150,7 @@ private void LogsClearedEvent()
150150 }
151151
152152 /// <summary>
153- /// Method that will be called when a Log object was added
153+ /// Method that is called when a Log object was added
154154 /// </summary>
155155 /// <param name="log">The Log object that was added</param>
156156 private void LogAddedEvent ( Log log )
@@ -189,7 +189,7 @@ private void LsvLogs_OnScroll(object sender, ScrollEventArgs e)
189189 }
190190
191191 /// <summary>
192- /// Method that will be called when all logs of a certain type should be cleared
192+ /// Method that is called when all logs of a certain type should be cleared
193193 /// </summary>
194194 /// <param name="sender">The object that called this method</param>
195195 /// <param name="e">The RoutedEventArgs</param>
@@ -199,7 +199,7 @@ private void BtnClear_OnClick(object sender, RoutedEventArgs e)
199199 }
200200
201201 /// <summary>
202- /// Method that will be called when all Logs of a certain type should be exported
202+ /// Method that is called when all Logs of a certain type should be exported
203203 /// </summary>
204204 /// <param name="sender">The object that called this method</param>
205205 /// <param name="e">The RoutedEventArgs</param>
@@ -209,7 +209,7 @@ private void BtnExport_OnClick(object sender, RoutedEventArgs e)
209209 }
210210
211211 /// <summary>
212- /// Method that will be called when a Log object should be removed
212+ /// Method that is called when a Log object should be removed
213213 /// </summary>
214214 /// <param name="sender">The object that called this method</param>
215215 /// <param name="e">The RoutedEventArgs</param>
@@ -220,7 +220,7 @@ private void DeleteMenuItem_OnClick(object sender, RoutedEventArgs e)
220220 }
221221
222222 /// <summary>
223- /// Method that will be called when a Log object should be copied to the clipboard
223+ /// Method that is called when a Log object should be copied to the clipboard
224224 /// </summary>
225225 /// <param name="sender">The object that called this method</param>
226226 /// <param name="e">The RoutedEventArgs</param>
@@ -241,7 +241,7 @@ private void CopyMenuItem_OnClick(object sender, RoutedEventArgs e)
241241 }
242242
243243 /// <summary>
244- /// Event that is called when the mouse wheel is used
244+ /// Method that is called when the mouse wheel is used
245245 /// </summary>
246246 /// <param name="sender">The object that called this method</param>
247247 /// <param name="e">The MouseWheelEventArgs</param>
0 commit comments