mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 17:28:03 +00:00
Document that \0NNN and \xHH need more work
This commit is contained in:
parent
4d5c034eb1
commit
9ef43191ff
1 changed files with 1 additions and 0 deletions
|
@ -51,6 +51,7 @@ fn generate_escape_sequence(rng: &mut impl Rng) -> String {
|
|||
let escape_sequences = [
|
||||
"\\\\", "\\a", "\\b", "\\c", "\\e", "\\f", "\\n", "\\r", "\\t", "\\v", "\\0NNN", "\\xHH",
|
||||
];
|
||||
// \0NNN and \xHH need more work
|
||||
escape_sequences.choose(rng).unwrap().to_string()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue