Skip to content

Commit

Permalink
Fixed documentation warnings (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican authored Jun 30, 2021
1 parent 0c0257f commit ad972f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion boa/src/builtins/array/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ impl Array {

/// `get Array [ @@species ]`
///
/// The Array[@@species] accessor property returns the Array constructor.
/// The `Array [ @@species ]` accessor property returns the Array constructor.
///
/// More information:
/// - [ECMAScript reference][spec]
Expand Down
2 changes: 1 addition & 1 deletion boa/src/builtins/map/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ impl Map {

/// `get Map [ @@species ]`
///
/// The Map[@@species] accessor property returns the Map constructor.
/// The `Map [ @@species ]` accessor property returns the Map constructor.
///
/// More information:
/// - [ECMAScript reference][spec]
Expand Down
4 changes: 2 additions & 2 deletions boa/src/builtins/regexp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,9 @@ impl RegExp {
Ok(this)
}

/// `get RegExp[@@species]`
/// `get RegExp [ @@species ]`
///
/// The RegExp[@@species] accessor property returns the RegExp constructor.
/// The `RegExp [ @@species ]` accessor property returns the RegExp constructor.
///
/// More information:
/// - [ECMAScript reference][spec]
Expand Down

0 comments on commit ad972f7

Please sign in to comment.