Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed documentation warnings #1381

Merged
merged 1 commit into from
Jun 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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