mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
style: avoid lines longer than 80 characters
This commit is contained in:
parent
a806d0a312
commit
7b14ee6b9b
76 changed files with 1246 additions and 972 deletions
|
@ -6,8 +6,8 @@ import 'bindings/worktree.dart' as bindings;
|
|||
class Worktree {
|
||||
/// Creates new worktree.
|
||||
///
|
||||
/// If [ref] is provided, no new branch will be created but specified [ref] will
|
||||
/// be used instead.
|
||||
/// If [ref] is provided, no new branch will be created but specified [ref]
|
||||
/// will be used instead.
|
||||
///
|
||||
/// [repo] is the repository to create working tree for.
|
||||
///
|
||||
|
@ -57,8 +57,8 @@ class Worktree {
|
|||
|
||||
/// Whether worktree is locked.
|
||||
///
|
||||
/// A worktree may be locked if the linked working tree is stored on a portable
|
||||
/// device which is not available.
|
||||
/// A worktree may be locked if the linked working tree is stored on a
|
||||
/// portable device which is not available.
|
||||
bool get isLocked => bindings.isLocked(_worktreePointer);
|
||||
|
||||
/// Locks worktree if not already locked.
|
||||
|
@ -83,8 +83,8 @@ class Worktree {
|
|||
|
||||
/// Whether worktree is valid.
|
||||
///
|
||||
/// A valid worktree requires both the git data structures inside the linked parent
|
||||
/// repository and the linked working copy to be present.
|
||||
/// A valid worktree requires both the git data structures inside the linked
|
||||
/// parent repository and the linked working copy to be present.
|
||||
bool get isValid => bindings.isValid(_worktreePointer);
|
||||
|
||||
/// Releases memory allocated for worktree object.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue