aboutsummaryrefslogtreecommitdiff
path: root/content/notes/non-blocking-shell-exec-csharp.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-06-27 14:50:20 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-06-27 14:50:20 +0200
commit8697555125c57ae64a0c9b78514b4aac4fd523de (patch)
treea699df53a7c35a4425f30bca86982c4341f6de40 /content/notes/non-blocking-shell-exec-csharp.md
parent33b2615a5038bc85036081e8b5e0da8584d88097 (diff)
downloadmitjafelicijan.com-8697555125c57ae64a0c9b78514b4aac4fd523de.tar.gz
Massive formatting and added figcaption
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)