Skip to content

Commit 7dc1d2f

Browse files
committed
Fix broken link in runtime.md
Change-Id: I0e473a3d01675d98dd11f541ba27b9ec4c1c2b69
1 parent 0663aca commit 7dc1d2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Feature|Example
3535
[const](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const)|`const a = 1;`
3636
[Default parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters)|`function(a = 1) { … }`
3737
[Destructuring assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)|`[a, b] = [1, 2]`
38-
[Exponentiation operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Exponentiation_(**))|`a ** b`
38+
[Exponentiation operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Exponentiation)|`a ** b`
3939
[for...of](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/statements/for...of)|`for (let a of b) { … }`
4040
[Generators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators#Generator_functions)|`function*() { … }`
4141
[let](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let)|`let a = 1;`

0 commit comments

Comments
 (0)