Skip to content

Commit

Permalink
Merge pull request #1267 from nick42d/fix_devel_typo
Browse files Browse the repository at this point in the history
Fixed typo in devel.rs
  • Loading branch information
Morganamilo authored Nov 9, 2024
2 parents 9177d82 + 7ea6cd9 commit 69d77b0
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 69d77b0

Please sign in to comment.