aboutsummaryrefslogtreecommitdiff
path: root/content/notes/non-blocking-shell-exec-csharp.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/notes/non-blocking-shell-exec-csharp.md')
-rw-r--r--content/notes/non-blocking-shell-exec-csharp.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/notes/non-blocking-shell-exec-csharp.md b/content/notes/non-blocking-shell-exec-csharp.md
index db40409..1904c4d 100644
--- a/content/notes/non-blocking-shell-exec-csharp.md
+++ b/content/notes/non-blocking-shell-exec-csharp.md
@@ -32,8 +32,8 @@ private async Task executeCopyCommand()
32} 32}
33``` 33```
34 34
35Make sure that `async` is present in the function definition and `await` is 35Make sure that `async` is present in the function definition and `await` is used
36used in the method that calls `executeCopyCommand()`. 36in the method that calls `executeCopyCommand()`.
37 37
38```c# 38```c#
39private async void button_Click(object sender, EventArgs e) 39private async void button_Click(object sender, EventArgs e)