Skip to content

Commit

Permalink
fix hyperlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Jan 9, 2025
1 parent 80e9511 commit b71d62c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/engine/src/builtins/array/from_async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ enum AsyncIteratorStateMachine {
},
}

/// Part of [`Array.fromAsync ( asyncItems [ , mapfn [ , thisArg ] ] )`][https://tc39.es/proposal-array-from-async/#sec-array.fromAsync].
/// Part of [`Array.fromAsync ( asyncItems [ , mapfn [ , thisArg ] ] )`][<https://tc39.es/proposal-array-from-async/#sec-array.fromAsync>].
fn from_async_iterator(
mut result: JsResult<JsValue>,
(global_state, state_machine): &(GlobalState, Cell<Option<AsyncIteratorStateMachine>>),
Expand Down Expand Up @@ -485,7 +485,7 @@ enum ArrayLikeStateMachine {
},
}

/// Part of [`Array.fromAsync ( asyncItems [ , mapfn [ , thisArg ] ] )`][https://tc39.es/proposal-array-from-async/#sec-array.fromAsync].
/// Part of [`Array.fromAsync ( asyncItems [ , mapfn [ , thisArg ] ] )`][<https://tc39.es/proposal-array-from-async/#sec-array.fromAsync>].
fn from_array_like(
mut result: JsResult<JsValue>,
(global_state, state_machine): &(GlobalState, Cell<Option<ArrayLikeStateMachine>>),
Expand Down

0 comments on commit b71d62c

Please sign in to comment.