Fix formatting after import
diff --git a/SignalHandling.md b/SignalHandling.md
index 6434e27..f7fb4d0 100644
--- a/SignalHandling.md
+++ b/SignalHandling.md
@@ -7,22 +7,22 @@
The following code demonstrates a program that waits for an interrupt signal and removes a temporary file when it occurs.
```
- package main
-
- import (
- "io/ioutil"
- "os"
- "os/signal"
- )
-
- func main() {
- f, err := ioutil.TempFile("", "test")
- if err != nil {
- panic(err)
- }
- defer os.Remove(f.Name())
- sig := make(chan os.Signal, 1)
- signal.Notify(sig, os.Interrupt)
- <-sig
- }
+package main
+
+import (
+ "io/ioutil"
+ "os"
+ "os/signal"
+)
+
+func main() {
+ f, err := ioutil.TempFile("", "test")
+ if err != nil {
+ panic(err)
+ }
+ defer os.Remove(f.Name())
+ sig := make(chan os.Signal, 1)
+ signal.Notify(sig, os.Interrupt)
+ <-sig
+}
```
\ No newline at end of file