Remove redundant title from page body
diff --git a/BoundingResourceUse.md b/Bounding-Resource-Use.md
similarity index 84%
rename from BoundingResourceUse.md
rename to Bounding-Resource-Use.md
index 3fc20d5..9e08f60 100644
--- a/BoundingResourceUse.md
+++ b/Bounding-Resource-Use.md
@@ -1,5 +1,3 @@
-[https://github.com/golang/go/wiki/BoundingResourceUse/_edit](https://github.com/golang/go/wiki/BoundingResourceUse/_edit)# Bounding resource use
-
 To bound a program's use of a limited resource - like memory - have goroutines synchronize their use of that resource using a buffered channel (i.e., use the channel as a semaphore):
 
 ```go