From a5c363e86b21e7582642e6b660e9def917f2b7d2 Mon Sep 17 00:00:00 2001 From: Andrew Beno Date: Mon, 4 Nov 2024 16:11:51 -0500 Subject: [PATCH 1/2] 'realted' -> 'related' typo fix --- content/courses/js/102-nullish-coalescing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/courses/js/102-nullish-coalescing.md b/content/courses/js/102-nullish-coalescing.md index a00e91df1..b37ea0568 100644 --- a/content/courses/js/102-nullish-coalescing.md +++ b/content/courses/js/102-nullish-coalescing.md @@ -1,6 +1,6 @@ --- title: Nullish Coalescing -description: How nullish coalescing is realted to truthy and falsy values +description: How nullish coalescing is related to truthy and falsy values weight: 24 lastmod: 2022-11-11T10:23:30-09:00 draft: false @@ -26,4 +26,4 @@ console.log(foo); // 'bar' const foo = 0 ?? 'bar'; console.log(foo); // 0 ``` -``` \ No newline at end of file +``` From 8158113cf6f2a83a2cad6f1d8f311349daa26b82 Mon Sep 17 00:00:00 2001 From: Andrew Beno Date: Mon, 4 Nov 2024 16:15:30 -0500 Subject: [PATCH 2/2] remove accidental line add --- content/courses/js/102-nullish-coalescing.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/courses/js/102-nullish-coalescing.md b/content/courses/js/102-nullish-coalescing.md index b37ea0568..e61b4d86a 100644 --- a/content/courses/js/102-nullish-coalescing.md +++ b/content/courses/js/102-nullish-coalescing.md @@ -26,4 +26,3 @@ console.log(foo); // 'bar' const foo = 0 ?? 'bar'; console.log(foo); // 0 ``` -```