From 7aa2867cb1811721780b5be6eaf6248de6604a75 Mon Sep 17 00:00:00 2001 From: mikemitchell574 <55799715+mikemitchell574@users.noreply.github.com> Date: Wed, 28 Oct 2020 06:59:54 -0400 Subject: [PATCH] Include "object" in MDN link --- 1-js/05-data-types/02-number/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/02-number/article.md b/1-js/05-data-types/02-number/article.md index e768f4d4..7f48a406 100644 --- a/1-js/05-data-types/02-number/article.md +++ b/1-js/05-data-types/02-number/article.md @@ -406,7 +406,7 @@ A few examples: alert( Math.pow(2, 10) ); // 2 in power 10 = 1024 ``` -There are more functions and constants in `Math` object, including trigonometry, which you can find in the [docs for the Math](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math) object. +There are more functions and constants in `Math` object, including trigonometry, which you can find in the [docs for the Math object](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math). ## Summary