Skip to content

Commit

Permalink
Fix doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Sep 21, 2021
1 parent 1813ac7 commit 37feda5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions boa/src/object/internal_methods/arguments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ pub(crate) fn arguments_exotic_define_own_property(
Ok(true)
}

/// [[Get]] for arguments exotic objects.
/// `[[Get]]` for arguments exotic objects.
///
/// More information:
/// - [ECMAScript reference][spec]
Expand Down Expand Up @@ -181,7 +181,7 @@ pub(crate) fn arguments_exotic_get(
}
}

/// [[Set]] for arguments exotic objects.
/// `[[Set]]` for arguments exotic objects.
///
/// More information:
/// - [ECMAScript reference][spec]
Expand Down Expand Up @@ -223,7 +223,7 @@ pub(crate) fn arguments_exotic_set(
super::ordinary_set(obj, key, value, receiver, context)
}

/// [[Delete]] for arguments exotic objects.
/// `[[Delete]]` for arguments exotic objects.
///
/// More information:
/// - [ECMAScript reference][spec]
Expand Down

0 comments on commit 37feda5

Please sign in to comment.