Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various suggestions for changes and improvements. #35

Merged
merged 17 commits into from
Jan 28, 2023
Merged
Prev Previous commit
Next Next commit
Update src/entry.rs
Co-authored-by: Erk <Erk-@users.noreply.github.com>
  • Loading branch information
Ulrik-dk and Erk- committed Jan 28, 2023
commit 83baba000a9ab77d71597619bbe784608649b146
2 changes: 1 addition & 1 deletion src/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::fmt::Write;
use inflector::Inflector;
use regex::Regex;

fn type_translation(input: String) -> String {
fn type_translation(input: &str) -> String {
if input.starts_with("futhark") {
auto_ctor(&input)
} else {
Expand Down