From ec9c56bb03126bcd66b82419077b822d8ddb0a29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rk=20S=C3=A1gi-Kaz=C3=A1r?= Date: Sat, 1 Aug 2020 15:01:18 +0200 Subject: [PATCH] docs: Fix typo (#413) --- docs/usage-package.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage-package.md b/docs/usage-package.md index ccd9670..4f6e753 100644 --- a/docs/usage-package.md +++ b/docs/usage-package.md @@ -68,7 +68,7 @@ Please consult the [online documentation](https://godoc.org/github.com/tus/tusd/ ## Implementing own storages -The tusd server is built to be as flexible as possible and to allow the use of different upload storage mechanisms. B +The tusd server is built to be as flexible as possible and to allow the use of different upload storage mechanisms. If you have different requirements, you can build your own storage backend which will save the files to a remote FTP server or similar. Doing so is as simple as implementing the [`tusd.DataStore`](https://godoc.org/github.com/tus/tusd/pkg/#DataStore) interface and using the new struct in the [configuration object](https://godoc.org/github.com/tus/tusd/pkg/#Config). Please consult the documentation about detailed information about the required methods.