2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-05 16:42:32 +03:00

Fix README typo under Request Config (#3825)

Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
Sam Carlton
2021-08-13 07:55:00 -05:00
committed by GitHub
parent e091491127
commit e10a0270e9
+2 -2
View File
@@ -465,8 +465,8 @@ These are the available config options for making requests. Only the `url` is re
// `false` - throw SyntaxError if JSON parsing failed (Note: responseType must be set to 'json')
silentJSONParsing: true, // default value for the current Axios version
// try to parse the response string as JSON even if `resposeType` is not 'json'
forcedJSONParsing: true,
// try to parse the response string as JSON even if `responseType` is not 'json'
forcedJSONParsing: true;
// throw ETIMEDOUT error instead of generic ECONNABORTED on request timeouts
clarifyTimeoutError: false,