From cb23f8273cea2106b708b99aa8404045e5bca194 Mon Sep 17 00:00:00 2001 From: David Danier Date: Sat, 2 May 2015 20:14:00 +0200 Subject: [PATCH] Fixed api.md not containing the correct information about href While playing with https://github.com/ddanier/django-git-lfs I noticed the documentation for the href attribute is a bit off. If you point git-lfs to /objects it will produce /objects/objects. So the correct URL may not contain "objects". This commit fixes this documentation issue. --- docs/api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api.md b/docs/api.md index 4d8d6ddb..153b67a6 100644 --- a/docs/api.md +++ b/docs/api.md @@ -32,8 +32,8 @@ $ ssh git@github.com git-lfs-authenticate user/repo.git download {oid} } // OPTIONAL key only needed if the Git LFS server is not hosted at the default // URL from the Git remote: - // https://github.com/user/repo.git/info/lfs/objects - "href": "https://other-server.com/user/repo/objects", + // https://github.com/user/repo.git/info/lfs/ + "href": "https://other-server.com/user/repo/", } ```