Added example of reversing
diff --git a/SliceTricks.md b/SliceTricks.md
index 773f8f5..9b43224 100644
--- a/SliceTricks.md
+++ b/SliceTricks.md
@@ -115,4 +115,15 @@
 		b = append(b, x)
 	}
 }
+```
+
+### Reversing
+
+To replace the contents of a slice with the same elements but in reverse order:
+```go
+
+for i := 0; i < len(a)/2; i++ {
+	opp := len(a)-1-i
+	a[i], a[opp] = a[opp], a[i]
+}
 ```
\ No newline at end of file