From 2a75e7d9284c8af9f75ba57dd46cdfa372b7f8c7 Mon Sep 17 00:00:00 2001 From: Akonwi Ngoh Date: Mon, 21 Nov 2016 11:57:35 -0500 Subject: [PATCH] :memo: Update documentation for ::getConfigValue Adds the `key` argument to the function documentation --- src/git-repository.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/git-repository.coffee b/src/git-repository.coffee index d47b2e37c..423a5ce2f 100644 --- a/src/git-repository.coffee +++ b/src/git-repository.coffee @@ -238,6 +238,7 @@ class GitRepository # Public: Returns the git configuration value specified by the key. # + # * `key` The {String} key for the configuration to lookup. # * `path` An optional {String} path in the repository to get this information # for, only needed if the repository has submodules. getConfigValue: (key, path) -> @getRepo(path).getConfigValue(key)