Skip to content

Commit 87c7b37

Browse files
committed
Removed spurious backticks.
1 parent 9db6be4 commit 87c7b37

File tree

2 files changed

+6
-6
lines changed
  • api
    • swimos_form/src/structural/read/from_model
    • swimos_model/src

2 files changed

+6
-6
lines changed

api/swimos_form/src/structural/read/from_model/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl RecordBuilder {
4646
}
4747
}
4848

49-
/// [`Recognizer``] implementation for the [`Value`] type.
49+
/// [`Recognizer`] implementation for the [`Value`] type.
5050
#[derive(Default, Debug)]
5151
pub struct ValueMaterializer {
5252
stack: Vec<RecordBuilder>,
@@ -308,7 +308,7 @@ impl Recognizer for ValueMaterializer {
308308
}
309309
}
310310

311-
/// [`Recognizer``] implementation for the [`Value`] type when it occurs in an attribute body.
311+
/// [`Recognizer`] implementation for the [`Value`] type when it occurs in an attribute body.
312312
#[derive(Debug)]
313313
pub struct AttrBodyMaterializer {
314314
inner: ValueMaterializer,
@@ -373,7 +373,7 @@ impl Recognizer for AttrBodyMaterializer {
373373
}
374374
}
375375

376-
/// [`Recognizer``] implementation for the [`Value`] type when it occurs as a delegated field.
376+
/// [`Recognizer`] implementation for the [`Value`] type when it occurs as a delegated field.
377377
#[derive(Debug, Default)]
378378
pub struct DelegateBodyMaterializer {
379379
inner: ValueMaterializer,

api/swimos_model/src/item.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ use std::hash::Hash;
2020
/// An item that may occur in the body of record [`Value`].
2121
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
2222
pub enum Item {
23-
/// An item consisting of a single [`Value``].
23+
/// An item consisting of a single [`Value`].
2424
ValueItem(Value),
2525

26-
/// An item that is a key value pair where both are [`Value``]s.
26+
/// An item that is a key value pair where both are [`Value`]s.
2727
Slot(Value, Value),
2828
}
2929

3030
impl Item {
31-
/// Create an [`Item``] from anything that can be converted to one.
31+
/// Create an [`Item`] from anything that can be converted to one.
3232
///
3333
/// #Examples
3434
///

0 commit comments

Comments
 (0)