Skip to content

Commit efc54f7

Browse files
committed
Added missing hyphens.
1 parent 87c7b37 commit efc54f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/swimos_model/src/attr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use std::hash::Hash;
2020
use crate::literal::write_string_literal;
2121
use crate::{Item, Value};
2222

23-
/// An attribute that can be applied to a record [`Value`]. A key value pair where the key is
23+
/// An attribute that can be applied to a record [`Value`]. A key-value pair where the key is
2424
/// a [`String`] and the value can be any [`Value`].
2525
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
2626
pub struct Attr {

api/swimos_model/src/item.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub enum Item {
2323
/// 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

0 commit comments

Comments
 (0)