From e571e0be9d31df050fc502eee2b940f0580fab04 Mon Sep 17 00:00:00 2001 From: Jsu Date: Sat, 23 May 2026 22:28:55 +0300 Subject: [PATCH] docs(fs): typo wether -> whether in commands.rs (#3429) --- plugins/fs/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/fs/src/commands.rs b/plugins/fs/src/commands.rs index 6d53b85d5..963e76abb 100644 --- a/plugins/fs/src/commands.rs +++ b/plugins/fs/src/commands.rs @@ -707,7 +707,7 @@ pub async fn read_text_file_lines_next( let lines = resource_table.get::(rid)?; let ret = StdLinesResource::with_lock(&lines, |lines| -> CommandResult> { - // This is an optimization to include wether we finished iteration or not (1 or 0) + // This is an optimization to include whether we finished iteration or not (1 or 0) // at the end of returned vector so we can use `tauri::ipc::Response` // and avoid serialization overhead of separate values. match lines.next() {