From 154bb440dd5d9ff2013baf6af89c3161eb91275c Mon Sep 17 00:00:00 2001
From: Amy Qualls <aqualls@gitlab.com>
Date: Mon, 15 May 2023 09:00:05 -0700
Subject: [PATCH] Wrap .zip names in backticks

Thanks to the new TLD, we should wrap all of these names ending in
.zip in backticks so they aren't rendered as links to who-knows-where.
---
 doc/ci/caching/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/ci/caching/index.md b/doc/ci/caching/index.md
index b87f34aa6338..f195a958f353 100644
--- a/doc/ci/caching/index.md
+++ b/doc/ci/caching/index.md
@@ -623,10 +623,10 @@ job B:
 ```
 
 1. `job A` runs.
-1. `public/` is cached as cache.zip.
+1. `public/` is cached as `cache.zip`.
 1. `job B` runs.
 1. The previous cache, if any, is unzipped.
-1. `vendor/` is cached as cache.zip and overwrites the previous one.
+1. `vendor/` is cached as `cache.zip` and overwrites the previous one.
 1. The next time `job A` runs it uses the cache of `job B` which is different
    and thus isn't effective.
 
-- 
GitLab