Skip to content

Commit

Permalink
Removed semicolons for cross-platform function
Browse files Browse the repository at this point in the history
  • Loading branch information
kokal33 committed Oct 24, 2023
1 parent 1f3d1de commit cda62b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fplus-lib/src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -769,15 +769,15 @@ impl LDNPullRequest {
}

pub(super) fn application_title(application_id: &str, owner_name: &str) -> String {
format!("Application:{}:{}", application_id, owner_name)
format!("Application_{}_{}", application_id, owner_name)
}

pub(super) fn application_body(application_id: &str) -> String {
format!("resolves #{}", application_id)
}

pub(super) fn application_path(application_id: &str) -> String {
format!("Application:{}.json", application_id)
format!("{}.json", application_id)
}

pub(super) fn application_initial_commit(owner_name: &str, application_id: &str) -> String {
Expand Down

0 comments on commit cda62b2

Please sign in to comment.