File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ The choice is yours; there is no "_right_" way to learn.
189
189
190
190
191
191
192
- ### Testing?
192
+ ### Testing & Documentation ?
193
193
194
194
_ Before_ diving into _ building_ the Todo List App,
195
195
we need to consider how we are going to _ test_ it.
@@ -206,6 +206,8 @@ please see:
206
206
and
207
207
[ ** front-end** -with-tape.md] ( https://github.com/dwyl/todomvc-vanilla-javascript-elm-architecture-example/blob/master/front-end-with-tape.md )
208
208
209
+ We will be using ** JSDOC** for documentation.
210
+ Please see [ our tutorial] ( https://github.com/dwyl/learn-jsdoc ) if this is new to you.
209
211
210
212
#### Create Files
211
213
@@ -740,7 +742,7 @@ test('`TOGGLE` (undo) a todo item from done=true to done=false', function (t) {
740
742
You should not _ need_ to modify any of the code in the ` update ` function.
741
743
The above test should just _ pass_ based on the code you wrote above.
742
744
If it does _ not_ , then _ revise_ your implementation
743
- of the ` TOGGLE case ` in ` upadate ` until _ all_ tests pass:
745
+ of the ` TOGGLE case ` in ` update ` until _ all_ tests pass:
744
746
745
747
![ undo-a-todo-item] ( https://user-images.githubusercontent.com/194400/43686533-b25d4608-98bf-11e8-809e-1153fcfb1db1.png )
746
748
You can’t perform that action at this time.
0 commit comments