Skip to content

Commit 23d1f28

Browse files
authored
Update docs/visual-basic/language-reference/statements/raiseevent-statement.md
1 parent 7ed9193 commit 23d1f28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/visual-basic/language-reference/statements/raiseevent-statement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ RaiseEvent eventname[( argumentlist )]
5454

5555
The class that raises an event is the event source, and the methods that process the event are the event handlers. An event source can have multiple handlers for the events it generates. When the class raises the event, that event is raised on every class that has elected to handle events for that instance of the object.
5656

57-
The example demonstrates a simple timer that counts down from 10 to 0 seconds and displays the progress to the console. When the countdown finishes, it displays "Done".
57+
The example demonstrates a timer that counts down from 10 to 0 seconds and displays the progress to the console. When the countdown finishes, it displays "Done".
5858

5959
Declare a `WithEvents` variable in your class to handle events from the timer:
6060

0 commit comments

Comments
 (0)