From 81edeb2f3b2976845e5542f56e4e3d9be5947cbd Mon Sep 17 00:00:00 2001 From: Aboubakar Sidik <36268779+sidikfaha@users.noreply.github.com> Date: Tue, 18 Mar 2025 01:34:03 +0000 Subject: [PATCH] docs: add missing 'different' word into the code example comment (#984) --- docs/src/guide/request-id.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' });