From 42d85af9187f75e3747893c1c7847e7df0907e37 Mon Sep 17 00:00:00 2001 From: Romashka Date: Wed, 18 Dec 2024 01:28:59 +0200 Subject: [PATCH] typo-Update config.rs --- prover/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prover/src/config.rs b/prover/src/config.rs index 4e3c1f2ccc..cfd1955395 100644 --- a/prover/src/config.rs +++ b/prover/src/config.rs @@ -62,7 +62,7 @@ impl AssetsDirEnvConfig { let value = std::env::var(SCROLL_PROVER_ASSETS_DIR_ENV_NAME)?; let dirs: Vec<&str> = value.split(',').collect(); if dirs.len() != 2 { - bail!("env variable SCROLL_PROVER_ASSETS_DIR value must be 2 parts seperated by comma.") + bail!("env variable SCROLL_PROVER_ASSETS_DIR value must be 2 parts separated by comma.") } unsafe { SCROLL_PROVER_ASSETS_DIRS = dirs.into_iter().map(|s| s.to_string()).collect();