From f516b424489bbf0a7bb1a1026116228855c90e13 Mon Sep 17 00:00:00 2001 From: Julian Kotrba Date: Wed, 24 Jul 2019 14:35:13 +0900 Subject: [PATCH] Add missing return type to Blame.file --- lib/blame.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/blame.js b/lib/blame.js index 7893d0c87..520bb8ce7 100644 --- a/lib/blame.js +++ b/lib/blame.js @@ -11,6 +11,7 @@ var _file = Blame.file; * @param {Repository} repo that contains the file * @param {String} path to the file to get the blame of * @param {BlameOptions} [options] Options for the blame + * @return {Blame} the blame */ Blame.file = function(repo, path, options) { options = normalizeOptions(options, NodeGit.BlameOptions);