From 59d98b8d1c9b4e33b88e15e0bf0cee3f95b36170 Mon Sep 17 00:00:00 2001 From: Jaka Kranjc Date: Sat, 14 Jul 2018 11:48:36 +0200 Subject: [PATCH] fix(challenges): remove obsolete mention of beta and update link #144 --- challenges/03-front-end-libraries/redux.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/03-front-end-libraries/redux.json b/challenges/03-front-end-libraries/redux.json index 4dc0302fbcb..a2f45aa6f12 100644 --- a/challenges/03-front-end-libraries/redux.json +++ b/challenges/03-front-end-libraries/redux.json @@ -24,7 +24,7 @@ "
", "The Redux store is an object which holds and manages application state. There is a method called createStore() on the Redux object, which you use to create the Redux store. This method takes a reducer function as a required argument. The reducer function is covered in a later challenge, and is already defined for you in the code editor. It simply takes state as an argument and returns state.", "Declare a store variable and assign it to the createStore() method, passing in the reducer as an argument.", - "Note: The code in the editor uses ES6 default argument syntax to initialize this state to hold a value of 5. If you're not familiar with default arguments, you can refer to the ES6 section in the Beta Curriculum which covers this topic." + "Note: The code in the editor uses ES6 default argument syntax to initialize this state to hold a value of 5. If you're not familiar with default arguments, you can refer to the ES6 section in the Curriculum which covers this topic." ], "files": { "indexjsx": {