Skip to content

Commit

Permalink
replace format! with to_string
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed May 23, 2022
1 parent 3b61b74 commit f49bc88
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -58,8 +58,8 @@ impl Default for FundInfo {
goal_name: "goal1".to_string(),
fund_id: 1,
}],
results_url: format!("http://localhost/fund/1/results/"),
survey_url: format!("http://localhost/fund/1/survey/"),
results_url: "http://localhost/fund/1/results/".to_string(),
survey_url: "http://localhost/fund/1/survey/".to_string(),
}
}
}

0 comments on commit f49bc88

Please sign in to comment.