Skip to content

Commit f47cca5

Browse files
authored
verusdoc: fix uninterp display; fixes #2473 (#2478)
1 parent cf79f2c commit f47cca5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/builtin_macros/src/rustdoc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ fn fn_mode_to_string(mode: &FnMode, publish: &Publish) -> String {
196196
Publish::OpenRestricted(res) => {
197197
"open(".to_string() + &module_path_to_string(&res.path) + ") spec"
198198
}
199-
Publish::Uninterp(_) => "uninterp".to_string(),
199+
Publish::Uninterp(_) => "uninterp spec".to_string(),
200200
Publish::Default => "spec".to_string(),
201201
},
202202
FnMode::Proof(_) | FnMode::ProofAxiom(_) => "proof".to_string(),

0 commit comments

Comments
 (0)