Fix typo in method name

pull/1316/head
Tobias Klauser 2 years ago
parent 49bbeeefae
commit 1b9d4bbf72
No known key found for this signature in database
GPG Key ID: 6F5040074CCC0D04

@ -239,7 +239,7 @@ fn main() {
.get_sysroot_src() .get_sysroot_src()
.expect("Couldn't find toolchain path, do you have `rustc` installed?"); .expect("Couldn't find toolchain path, do you have `rustc` installed?");
project project
.exercies_to_json() .exercises_to_json()
.expect("Couldn't parse rustlings exercises files"); .expect("Couldn't parse rustlings exercises files");
if project.crates.is_empty() { if project.crates.is_empty() {

@ -54,7 +54,7 @@ impl RustAnalyzerProject {
/// Parse the exercises folder for .rs files, any matches will create /// Parse the exercises folder for .rs files, any matches will create
/// a new `crate` in rust-project.json which allows rust-analyzer to /// a new `crate` in rust-project.json which allows rust-analyzer to
/// treat it like a normal binary /// treat it like a normal binary
pub fn exercies_to_json(&mut self) -> Result<(), Box<dyn Error>> { pub fn exercises_to_json(&mut self) -> Result<(), Box<dyn Error>> {
for e in glob("./exercises/**/*")? { for e in glob("./exercises/**/*")? {
let path = e?.to_string_lossy().to_string(); let path = e?.to_string_lossy().to_string();
self.path_to_json(path); self.path_to_json(path);

Loading…
Cancel
Save