Skip to content

Commit

Permalink
Add some links in doccomments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethiraric committed Sep 13, 2024
1 parent 7641a10 commit 953d0ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/yaml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ pub enum Yaml {
String(String),
/// YAML bool, e.g. `true` or `false`.
Boolean(bool),
/// YAML array, can be accessed as a `Vec`.
/// YAML array, can be accessed as a [`Vec`].
Array(Array),
/// YAML hash, can be accessed as a `LinkedHashMap`.
/// YAML hash, can be accessed as a [`LinkedHashMap`].
///
/// Insertion order will match the order of insertion into the map.
Hash(Hash),
Expand Down

0 comments on commit 953d0ae

Please sign in to comment.