Skip to content

Commit 1a29e60

Browse files
committed
Merge pull request #55 from surfer190/master
Provide more descriptive header
2 parents 4d26afa + 9c321b0 commit 1a29e60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.doxie.render.toc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ slugify = function(text){
1111
var render = function(data) {
1212
var data = data.data;
1313

14-
var out = '* [' + data.title + '](https://github.com/git-tips/tips#' + slugify(data.title) + ')\n';
14+
var out = '* [' + data.title + '](#' + slugify(data.title) + ')\n';
1515

1616
return out;
1717
};

tips.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
"title": "Modify previous commit without modifying the commit message",
180180
"tip": "git add --all && git commit --amend --no-edit"
181181
}, {
182-
"title": "Prunes branches that have been deleted in the remote.",
182+
"title": "Prunes references to remote branches that have been deleted in the remote.",
183183
"tip": "git fetch -p",
184184
"alternatives": ["git remote prune origin"]
185185
}, {

0 commit comments

Comments
 (0)