diff --git a/.doxie.render.toc.js b/.doxie.render.toc.js index 92af283..bc74e84 100644 --- a/.doxie.render.toc.js +++ b/.doxie.render.toc.js @@ -11,7 +11,7 @@ slugify = function(text){ var render = function(data) { var data = data.data; - var out = '* [' + data.title + '](https://github.com/git-tips/tips#' + slugify(data.title) + ')\n'; + var out = '* [' + data.title + '](#' + slugify(data.title) + ')\n'; return out; }; diff --git a/tips.json b/tips.json index 755eb1c..590227c 100644 --- a/tips.json +++ b/tips.json @@ -179,7 +179,7 @@ "title": "Modify previous commit without modifying the commit message", "tip": "git add --all && git commit --amend --no-edit" }, { - "title": "Prunes branches that have been deleted in the remote.", + "title": "Prunes references to remote branches that have been deleted in the remote.", "tip": "git fetch -p", "alternatives": ["git remote prune origin"] }, {