Minor typo correction (#29484)

The spelling of response had a typo.
This commit is contained in:
nightsurfer7
2018-11-28 02:46:44 +05:30
committed by Jingyi Ding
parent e889e4e5d1
commit 6e58cbea78

View File

@ -14,7 +14,7 @@ localeTitle: 使用.env文件
```javascript ```javascript
if (process.env.VAR_NAME === "allCaps") { if (process.env.VAR_NAME === "allCaps") {
resonse = "Hello World".toUpperCase(); response = "Hello World".toUpperCase();
} else { } else {
response = "Hello World"; response = "Hello World";
} }