From ac1790c69ea588f3c38d22f696b2ed7e970c80ce Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 24 Nov 2022 09:41:24 +0100 Subject: [PATCH] split: fix "backticks are unbalanced" warnings --- src/uu/split/src/filenames.rs | 2 +- src/uu/split/src/number.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uu/split/src/filenames.rs b/src/uu/split/src/filenames.rs index 95ae5d40f..6bec4105f 100644 --- a/src/uu/split/src/filenames.rs +++ b/src/uu/split/src/filenames.rs @@ -59,7 +59,7 @@ impl SuffixType { /// This iterator yields filenames for use with ``split``. /// /// The `prefix` is prepended to each filename and the -/// `additional_suffix1 is appended to each filename. +/// `additional_suffix1` is appended to each filename. /// /// If `suffix_length` is 0, then the variable portion of the filename /// that identifies the current chunk will have a dynamically diff --git a/src/uu/split/src/number.rs b/src/uu/split/src/number.rs index 4605d6fb0..00a536af5 100644 --- a/src/uu/split/src/number.rs +++ b/src/uu/split/src/number.rs @@ -67,7 +67,7 @@ impl Error for Overflow {} /// /// For the [`DynamicWidthNumber`], the digits are not unique in the /// sense that repeatedly incrementing the number will eventually -/// yield `vec![0, 0]`, `vec![0, 0, 0], `vec![0, 0, 0, 0]`, etc. +/// yield `vec![0, 0]`, `vec![0, 0, 0]`, `vec![0, 0, 0, 0]`, etc. /// That's okay because each of these numbers will be displayed /// differently and we only intend to use these numbers for display /// purposes and not for mathematical purposes. @@ -95,7 +95,7 @@ impl Number { /// /// For the [`DynamicWidthNumber`], the digits are not unique in the /// sense that repeatedly incrementing the number will eventually - /// yield `vec![0, 0]`, `vec![0, 0, 0], `vec![0, 0, 0, 0]`, etc. + /// yield `vec![0, 0]`, `vec![0, 0, 0]`, `vec![0, 0, 0, 0]`, etc. /// That's okay because each of these numbers will be displayed /// differently and we only intend to use these numbers for display /// purposes and not for mathematical purposes.