From d553e6aa871b22e004f96e76fb6f20dc939d8ee5 Mon Sep 17 00:00:00 2001 From: Konstantin Andrikopoulos Date: Sun, 8 Dec 2024 01:45:00 +0100 Subject: [PATCH] fix typo --- miri-script/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miri-script/src/main.rs b/miri-script/src/main.rs index a55a1df858..01dd89f9c1 100644 --- a/miri-script/src/main.rs +++ b/miri-script/src/main.rs @@ -12,7 +12,7 @@ use clap::{Parser, Subcommand}; /// Parses a seed range /// /// This function is used for the `--many-seeds` flag. It expects the range in the form -/// `..`. `` is inclusive, `` is exclusive. `` can bi omitted, +/// `..`. `` is inclusive, `` is exclusive. `` can be omitted, /// in which case it is assumed to be `0`. fn parse_range(val: &str) -> anyhow::Result> { let (from, to) = val