From bb326936f6428a8f6613ba0216d77e67ff7a986f Mon Sep 17 00:00:00 2001 From: Alexander Shirokov Date: Sat, 14 Dec 2024 18:12:07 +0100 Subject: [PATCH] seq:floatparse:adjust spell-checker Issue #6935 --- src/uu/seq/src/floatparse.rs | 1 + src/uu/seq/src/numberparse.rs | 2 +- src/uu/seq/src/seq.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/uu/seq/src/floatparse.rs b/src/uu/seq/src/floatparse.rs index 8d38fc9702..8e8e3d1e36 100644 --- a/src/uu/seq/src/floatparse.rs +++ b/src/uu/seq/src/floatparse.rs @@ -2,6 +2,7 @@ // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. +// spell-checker:ignore extendedbigdecimal bigdecimal hexdigit numberparse use crate::extendedbigdecimal::ExtendedBigDecimal; use crate::number::PreciseNumber; use crate::numberparse::ParseNumberError; diff --git a/src/uu/seq/src/numberparse.rs b/src/uu/seq/src/numberparse.rs index 1c5902633a..00a99346c1 100644 --- a/src/uu/seq/src/numberparse.rs +++ b/src/uu/seq/src/numberparse.rs @@ -2,7 +2,7 @@ // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -// spell-checker:ignore extendedbigdecimal bigdecimal numberparse +// spell-checker:ignore extendedbigdecimal bigdecimal numberparse floatparse //! Parsing numbers for use in `seq`. //! //! This module provides an implementation of [`FromStr`] for the diff --git a/src/uu/seq/src/seq.rs b/src/uu/seq/src/seq.rs index 6a614b336c..81aa13314d 100644 --- a/src/uu/seq/src/seq.rs +++ b/src/uu/seq/src/seq.rs @@ -2,7 +2,7 @@ // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -// spell-checker:ignore (ToDO) extendedbigdecimal numberparse +// spell-checker:ignore (ToDO) extendedbigdecimal numberparse floatparse use std::io::{stdout, ErrorKind, Write}; use clap::{crate_version, Arg, ArgAction, Command};