docs: update readme (#5)

This commit is contained in:
Aleksey Kulikov 2021-11-03 17:10:47 +03:00
parent c2da51af94
commit 28859a1e3d
3 changed files with 549 additions and 2 deletions

View file

@ -123,7 +123,7 @@ class Reference {
ref.free();
}
/// List of all the references that can be found in a [repo]sitory.
/// List of all the references names that can be found in a [repo]sitory.
///
/// Throws a [LibGit2Error] if error occured.
static List<String> list(Repository repo) => bindings.list(repo.pointer);

View file

@ -96,7 +96,7 @@ class Tag {
bindings.delete(repoPointer: repo.pointer, tagName: name);
}
/// Returns a list with all the tags in the repository.
/// Returns a list with all the tags names in the repository.
///
/// Throws a [LibGit2Error] if error occured.
static List<String> list(Repository repo) {