Skip to content

Commit fa695b3

Browse files
committed
doc: Doc changes for reexports
1 parent c4d287b commit fa695b3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/protocol/v7.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ use serde::de::{Deserialize, Deserializer, Error as DeError};
1616
use serde::ser::{Error as SerError, Serialize, SerializeMap, Serializer};
1717
use serde_json::{from_value, to_value};
1818

19-
/// Internals for the protocol v7's arbitrary data type.
19+
/// An arbitrary (JSON) value (`serde_json::value::Value`)
2020
pub mod value {
2121
pub use serde_json::value::{Value, Index, Number, from_value, to_value};
2222
}
2323

24-
/// Internals for the protocol v7's map type.
24+
/// The internally use arbitrary data map type (`linked_hash_map::LinkedHashMap`)
2525
///
2626
/// It is currently backed by the `linked-hash-map` crate's hash map so that
2727
/// insertion order is preserved.
@@ -31,10 +31,10 @@ pub mod map {
3131
VacantEntry, Values};
3232
}
3333

34-
/// An arbitrary (JSON) value.
34+
/// An arbitrary (JSON) value (`serde_json::value::Value`)
3535
pub use self::value::Value;
3636

37-
/// The internally use arbitrary data map type.
37+
/// The internally use arbitrary data map type (`linked_hash_map::LinkedHashMap`)
3838
pub use self::map::LinkedHashMap as Map;
3939

4040
/// Represents a log entry message.

0 commit comments

Comments
 (0)