Removed TODOs.
diff --git a/reader.go b/reader.go
index 41eb385..4e05057 100644
--- a/reader.go
+++ b/reader.go
@@ -19,7 +19,6 @@
 	}
 }
 
-// TODO: look at returning a "Ticket/Claim/Receipt" upon which "Commit" can be called
 func (this *Reader) Receive() (int64, int64) {
 	lower := this.readerCursor.Load() + 1
 	upper := this.upstreamBarrier.LoadBarrier(lower)
diff --git a/shared_writer.go b/shared_writer.go
index 2241842..4450648 100644
--- a/shared_writer.go
+++ b/shared_writer.go
@@ -24,7 +24,6 @@
 	}
 }
 
-// TODO: look at returning a "Ticket/Claim/Receipt" upon which "Commit" can be called
 func (this *SharedWriter) Reserve(count int64) (int64, int64) {
 	for {
 		previous := this.reservation.Load()
diff --git a/writer.go b/writer.go
index 00f9d82..794b662 100644
--- a/writer.go
+++ b/writer.go
@@ -27,7 +27,6 @@
 	}
 }
 
-// TODO: look at returning a "Ticket/Claim/Receipt" upon which "Commit" can be called
 func (this *Writer) Reserve(count int64) (int64, int64) {
 	upper := this.previous + count
 	wrap := upper - this.capacity