diff options
author | Ben Straub <bstraub@github.com> | 2012-07-13 15:50:23 -0700 |
---|---|---|
committer | Ben Straub <bstraub@github.com> | 2012-07-13 15:50:23 -0700 |
commit | deac801de98be4974cfe806eb4bc072f34f81cc5 (patch) | |
tree | 26a99ee7fdac431f9b66b9a4219636634ec0944c | |
parent | 339f3d071eda7154fcfc996a3d7d67d84a5e1482 (diff) | |
download | libgit2-deac801de98be4974cfe806eb4bc072f34f81cc5.tar.gz |
Fix documentation comment to match actual params.
-rw-r--r-- | include/git2/checkout.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/git2/checkout.h b/include/git2/checkout.h index 9dec5b93d..313d52f76 100644 --- a/include/git2/checkout.h +++ b/include/git2/checkout.h @@ -22,12 +22,9 @@ GIT_BEGIN_DECL /** - * Updates files in the working tree to match the version in the index - * or HEAD. + * Updates files in the working tree to match the version in the index. * * @param repo repository to check out (must be non-bare) - * @param origin_url repository to clone from - * @param workdir_path local directory to clone to * @param stats pointer to structure that receives progress information (may be NULL) * @return 0 on success, GIT_ERROR otherwise (use git_error_last for information about the error) */ |