fix(curriculum): typo in example (#48534)

fix - typo in example
This commit is contained in:
Jeremy L Thompson
2022-11-17 18:24:47 -07:00
committed by GitHub
parent d268822fe4
commit 8a01079b7a

View File

@@ -23,8 +23,8 @@ const article = {
"createdAt": "NOVEMBER 28, 2018"
};
const articleAuthor = article[author];
const articleLink = article[link];
const articleAuthor = article["author"];
const articleLink = article["link"];
const value = "title";
const valueLookup = article[value];