Skip to content

Commit

Permalink
Merge pull request #45 from filecoin-project/change-application-name
Browse files Browse the repository at this point in the history
Removed semicolons for cross-platform function
  • Loading branch information
jbesraa authored Oct 27, 2023
2 parents 905b3f0 + cda62b2 commit accf593
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 @@ -779,15 +779,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 accf593

Please sign in to comment.