Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscoBSalgueiro committed Nov 16, 2023
1 parent 812fcb6 commit 6b70a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/chess.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ pub async fn analyze_game(
let path = PathBuf::from(&engine);
let mut analysis: Vec<MoveAnalysis> = Vec::new();

let (mut proc, mut reader) = EngineProcess::new(path).await?;
let (mut process, mut reader) = EngineProcess::new(path).await?;

let fen = Fen::from_ascii(options.fen.as_bytes())?;

Expand Down

0 comments on commit 6b70a11

Please sign in to comment.