mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 15:22:38 +00:00
Merge pull request #4181 from cakebaker/split_backticks_are_unbalanced
split: fix "backticks are unbalanced" warnings
This commit is contained in:
commit
033969cf8f
2 changed files with 3 additions and 3 deletions
|
@ -59,7 +59,7 @@ impl SuffixType {
|
||||||
/// This iterator yields filenames for use with ``split``.
|
/// This iterator yields filenames for use with ``split``.
|
||||||
///
|
///
|
||||||
/// The `prefix` is prepended to each filename and the
|
/// 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
|
/// If `suffix_length` is 0, then the variable portion of the filename
|
||||||
/// that identifies the current chunk will have a dynamically
|
/// that identifies the current chunk will have a dynamically
|
||||||
|
|
|
@ -67,7 +67,7 @@ impl Error for Overflow {}
|
||||||
///
|
///
|
||||||
/// For the [`DynamicWidthNumber`], the digits are not unique in the
|
/// For the [`DynamicWidthNumber`], the digits are not unique in the
|
||||||
/// sense that repeatedly incrementing the number will eventually
|
/// 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
|
/// That's okay because each of these numbers will be displayed
|
||||||
/// differently and we only intend to use these numbers for display
|
/// differently and we only intend to use these numbers for display
|
||||||
/// purposes and not for mathematical purposes.
|
/// purposes and not for mathematical purposes.
|
||||||
|
@ -95,7 +95,7 @@ impl Number {
|
||||||
///
|
///
|
||||||
/// For the [`DynamicWidthNumber`], the digits are not unique in the
|
/// For the [`DynamicWidthNumber`], the digits are not unique in the
|
||||||
/// sense that repeatedly incrementing the number will eventually
|
/// 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
|
/// That's okay because each of these numbers will be displayed
|
||||||
/// differently and we only intend to use these numbers for display
|
/// differently and we only intend to use these numbers for display
|
||||||
/// purposes and not for mathematical purposes.
|
/// purposes and not for mathematical purposes.
|
||||||
|
|
Loading…
Reference in a new issue