-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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
test1.rs doesn't adhere to naming conventions #180
Comments
Jesse-Cameron
added a commit
to Jesse-Cameron/rustlings
that referenced
this issue
Jun 28, 2019
bors
added a commit
that referenced
this issue
Jun 28, 2019
fix(test1): renamed function name to snake case addressing a minor function naming convention, see: [RFC #430](https://doc.rust-lang.org/1.0.0/style/style/naming/README.html) closes #180
pedantic79
pushed a commit
to pedantic79/rustlings
that referenced
this issue
Apr 11, 2020
pedantic79
pushed a commit
to pedantic79/rustlings
that referenced
this issue
Apr 11, 2020
fix(test1): renamed function name to snake case addressing a minor function naming convention, see: [RFC rust-lang#430](https://doc.rust-lang.org/1.0.0/style/style/naming/README.html) closes rust-lang#180
ppp3
pushed a commit
to ppp3/rustlings
that referenced
this issue
May 23, 2022
ppp3
pushed a commit
to ppp3/rustlings
that referenced
this issue
May 23, 2022
fix(test1): renamed function name to snake case addressing a minor function naming convention, see: [RFC rust-lang#430](https://doc.rust-lang.org/1.0.0/style/style/naming/README.html) closes rust-lang#180
dmoore04
pushed a commit
to dmoore04/rustlings
that referenced
this issue
Sep 11, 2022
dmoore04
pushed a commit
to dmoore04/rustlings
that referenced
this issue
Sep 11, 2022
fix(test1): renamed function name to snake case addressing a minor function naming convention, see: [RFC rust-lang#430](https://doc.rust-lang.org/1.0.0/style/style/naming/README.html) closes rust-lang#180
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the exercise file test1.rs, there is a function named
calculateprice
. Standard Rust naming conventions requires it to be namedcalculate_price
, using snake case.The text was updated successfully, but these errors were encountered: