docs(tvix/eval): Use correct syntax for module doc comments

Change-Id: I35741856f34b86a538f226a8eaf8806edede60ec
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6207
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-08-14 03:08:11 +03:00 committed by tazjin
parent 11ea7b82d8
commit 8d45fbadea
4 changed files with 12 additions and 13 deletions

View file

@ -1,10 +1,9 @@
//! This module implements Nix language strings and their different
//! backing implementations.
use smol_str::SmolStr;
use std::hash::Hash;
use std::{borrow::Cow, fmt::Display};
/// This module implements Nix language strings and their different
/// backing implementations.
#[derive(Clone, Debug)]
enum StringRepr {
Smol(SmolStr),