We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5049c69 commit abfdb08Copy full SHA for abfdb08
src/html/html_cli.rs
@@ -271,7 +271,7 @@ fn parse_register(
271
.then(|| enums_to_map(&enums))
272
.and_then(|map| minimal_hole(&map, fwidth))
273
.ok_or_else(|| anyhow!("Value is missing from {value:?}"))?;
274
- format!("{val} and missed")
+ format!("{val} (+)")
275
};
276
277
doc += &format!(
@@ -284,7 +284,7 @@ fn parse_register(
284
} else if let Some(WriteConstraint::Range(wcrange)) = wc.as_ref() {
285
let mn = hex(wcrange.min);
286
let mx = hex(wcrange.max);
287
- fdoc = Some(format!("Allowed values: {mn}-{mx}"));
+ fdoc = Some(format!("Allowed values: <strong>{mn}-{mx}</strong>"));
288
}
289
290
fields.push(object!({
0 commit comments