mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
docs: update readme (#5)
This commit is contained in:
parent
c2da51af94
commit
28859a1e3d
3 changed files with 549 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue