Skip to content

Commit

Permalink
Fixed typo in devel.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
nick42d committed Oct 15, 2024
1 parent 9177d82 commit 7ea6cd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ pub fn save_devel_info(config: &Config, devel_info: &DevelInfo) -> Result<()> {
Ok(())
}

async fn ls_remote_intenral(
async fn ls_remote_internal(
git: &str,
flags: &[String],
remote: &str,
Expand Down Expand Up @@ -293,7 +293,7 @@ async fn ls_remote(
) -> Result<String> {
let remote = &remote;
let time = Duration::from_secs(15);
let future = ls_remote_intenral(git, flags, remote, branch);
let future = ls_remote_internal(git, flags, remote, branch);
let future = timeout(time, future);

if let Ok(v) = future.await {
Expand Down

0 comments on commit 7ea6cd9

Please sign in to comment.