fix(curriculum): rename variable to avoid conflict (#39428)

This commit is contained in:
Ryan-Chu
2020-08-19 07:47:30 -07:00
committed by GitHub
parent 8350c517cc
commit bd02c989df

View File

@ -32,7 +32,8 @@ tests:
- text: Your <code>incrementer</code> function should take an argument.
testString: assert(incrementer.length === 1);
- text: Your <code>incrementer</code> function should return a value that is one larger than the <code>fixedValue</code> value.
testString: const newValue = incrementer(fixedValue); assert(newValue === 5);
testString: const __newValue = incrementer(fixedValue); assert(__newValue === 5);
```