From 3f3fb9b7583954c623d5d01abfb841b06d65876c Mon Sep 17 00:00:00 2001 From: Chris Kuehl Date: Tue, 19 Mar 2024 19:38:40 -0500 Subject: [PATCH] Fix Markdown link in Storage docs (#1922) Fix incorrectly formatted Markdown link in storage docs. --- docs/content/configuration/storage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/configuration/storage.md b/docs/content/configuration/storage.md index c9d3c32e..ab63ea65 100644 --- a/docs/content/configuration/storage.md +++ b/docs/content/configuration/storage.md @@ -346,7 +346,7 @@ It assumes that you already have the following: ## External Storage External storage lets Athens connect to your own implementation of a storage backend. -All you have to do is implement the (storage.Backend)[https://github.com/gomods/athens/blob/main/pkg/storage/backend.go#L4] interface and run it behind an http server. +All you have to do is implement the [storage.Backend](https://github.com/gomods/athens/blob/main/pkg/storage/backend.go#L4) interface and run it behind an http server. Once you implement the backend server, you must then configure Athens to use that storage backend as such: @@ -491,4 +491,4 @@ Optionally, like `redis`, you can also specify a password to connect to the `red # redis sentinel SentinelPassword = "sekret" -Distributed lock options can be customised for redis sentinal as well, in a similar manner as described above for redis. \ No newline at end of file +Distributed lock options can be customised for redis sentinal as well, in a similar manner as described above for redis.