diff --git a/docs/src/guide/request-id.md b/docs/src/guide/request-id.md index 0b61ebd..7a6a878 100644 --- a/docs/src/guide/request-id.md +++ b/docs/src/guide/request-id.md @@ -18,7 +18,7 @@ import { setupCache } from 'axios-cache-interceptor'; const axios = setupCache(Axios); // [!code focus:5] -// These two requests are from completely endpoints, but they will share +// These two requests are from completely different endpoints, but they will share // the same resources and cache, as both have the same ID. const reqA = await axios.get('/a', { id: 'custom-id' }); const reqB = await axios.get('/b', { id: 'custom-id' });