this repo has no description

Add whitespace around arrows indicating merge directions

+7 -7
+7 -7
src/main.rs
··· 347 347 { 348 348 if pull.base.ref_field != target { 349 349 eprintln!( 350 - "updating target of PR #{number} from {prev_target}<-{branch} to {new_target}<-{branch}", 350 + "updating target of PR #{number} from {prev_target} <- {branch} to {new_target} <- {branch}", 351 351 number = pull.number, 352 352 prev_target = pull.base.ref_field, 353 353 new_target = target, ··· 360 360 .await 361 361 .with_context(|| { 362 362 format!( 363 - "failed updating target of PR #{number} from {prev_target}<-{branch} to {new_target}<-{branch}", 363 + "failed updating target of PR #{number} from {prev_target} <- {branch} to {new_target} <- {branch}", 364 364 number = pull.number, 365 365 prev_target = pull.base.ref_field, 366 366 new_target = target, ··· 370 370 } 371 371 } else if Confirm::new() 372 372 .with_prompt(format!( 373 - "PR from {target}<-{branch} doesn't exist. Do you want to create it?" 373 + "PR from {target} <- {branch} doesn't exist. Do you want to create it?" 374 374 )) 375 375 .default(true) 376 376 .interact()? ··· 385 385 .draft(true) 386 386 .send() 387 387 .await 388 - .with_context(|| format!("failed to create PR from {target}<-{branch}"))?; 388 + .with_context(|| format!("failed to create PR from {target} <- {branch}"))?; 389 389 390 390 if let Some(url) = &pull.html_url { 391 - eprintln!("Created PR from {target}<-{branch}: {url}"); 391 + eprintln!("Created PR from {target} <- {branch}: {url}"); 392 392 } else { 393 - eprintln!("Created PR from {target}<-{branch}"); 393 + eprintln!("Created PR from {target} <- {branch}"); 394 394 } 395 395 pulls.push(pull); 396 396 } else { 397 - eprintln!("skipping creating PR from {target}<-{branch}"); 397 + eprintln!("skipping creating PR from {target} <- {branch}"); 398 398 } 399 399 400 400 Ok(())