fix(curriculum): Fixed typo APi to API (#38998)

* Fixed a typo APi => API

Co-authored-by: Vardhu2706 <avsv.vardhaman@gmail.com>
This commit is contained in:
Vardhaman
2020-06-04 12:40:49 +05:30
committed by GitHub
parent 95371f92b3
commit 32a443d1c9
6 changed files with 6 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ challengeType: 2
tests:
- text: '测试1您的API端点应使用正确的名称进行响应'
testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?first=Mick&last=Jagger'').then(data => { assert.equal(data.name, ''Mick Jagger'', ''Test 1: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })'
- text: '测试2您的APi端点应以正确的名称响应'
- text: '测试2您的API端点应以正确的名称响应'
testString: 'getUserInput => $.get(getUserInput(''url'') + ''/name?last=Richards&first=Keith'').then(data => { assert.equal(data.name, ''Keith Richards'', ''Test 2: "GET /name" route does not behave as expected'') }, xhr => { throw new Error(xhr.responseText); })'
```