diff options
author | Florian Klink <flokli@flokli.de> | 2023-12-21T15·36+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-21T16·43+0000 |
commit | 410abd67f881a1131a391ab5c941b687b69a1456 (patch) | |
tree | 773608622eb880fdf164d0fa52c8e9e04a4f181a | |
parent | 783a1e314caa6345ab3efbfc878b7362f1e0e01b (diff) |
docs(nix-compat/aterm/parser): fix docstring r/7248
Change-Id: I7a65ce320163c5898df402af3a639f6cee2e17c6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10402 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: edef <edef@edef.eu>
-rw-r--r-- | tvix/nix-compat/src/aterm/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nix-compat/src/aterm/parser.rs b/tvix/nix-compat/src/aterm/parser.rs index d76afb0616e6..72648d5ef590 100644 --- a/tvix/nix-compat/src/aterm/parser.rs +++ b/tvix/nix-compat/src/aterm/parser.rs @@ -28,7 +28,7 @@ fn parse_escaped_bstr(i: &[u8]) -> IResult<&[u8], BString> { } /// Parse a field in double quotes, undo any escaping, and return the unquoted -/// and decoded Vec<u8>. +/// and decoded `Vec<u8>`. pub(crate) fn parse_bstr_field(i: &[u8]) -> IResult<&[u8], BString> { // inside double quotes… delimited( |