Skip to content

Commit 97f88a2

Browse files
author
Stephan Dilly
committed
rename
1 parent bd54b47 commit 97f88a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ impl App {
551551
self.push_popup.push(branch, force)?;
552552
flags.insert(NeedsUpdate::ALL)
553553
}
554-
InternalEvent::Fetch(branch) => {
554+
InternalEvent::Pull(branch) => {
555555
self.fetch_popup.fetch(branch)?;
556556
flags.insert(NeedsUpdate::ALL)
557557
}

src/queue.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub enum InternalEvent {
6363
///
6464
Push(String, bool),
6565
///
66-
Fetch(String),
66+
Pull(String),
6767
}
6868

6969
///

src/tabs/status.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ impl Status {
418418
if let Some(branch) = self.git_branch_name.last() {
419419
self.queue
420420
.borrow_mut()
421-
.push_back(InternalEvent::Fetch(branch));
421+
.push_back(InternalEvent::Pull(branch));
422422
}
423423
}
424424

0 commit comments

Comments
 (0)