From 78c90b36927f42276cc7638bbbae8b0c553b5428 Mon Sep 17 00:00:00 2001 From: neilotoole Date: Fri, 19 Jan 2024 02:06:19 -0700 Subject: [PATCH] README: add links --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2d29f5..70d596a 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ starvation threshold, at which point `sync.Mutex` enters "starvation mode" for those starved waiters, but that's too late for our use case). `fifomu.Mutex` implements the exported methods of `sync.Mutex` and thus is -a drop-in replacement (and by extension, also implements `sync.Locker`). +a drop-in replacement (and by extension, also implements [`sync.Locker`](https://pkg.go.dev/sync#Locker)). It also provides a bonus context-aware [`LockContext`](https://pkg.go.dev/github.com/neilotoole/fifomu#Mutex.LockContext) method.