diff mbox series

[2/6] utils/docker-run: fix symmetry typo

Message ID 20240920155955.4074868-2-peter@korsgaard.com
State New
Headers show
Series [1/6] utils/config: fix don't typo | expand

Commit Message

Peter Korsgaard Sept. 20, 2024, 3:59 p.m. UTC
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 utils/docker-run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/utils/docker-run b/utils/docker-run
index 1adb02d74e..849df66d54 100755
--- a/utils/docker-run
+++ b/utils/docker-run
@@ -78,7 +78,7 @@  if [ "${GIT_DIR}" ]; then
 
     # 'repo' stores .git/objects separately.
     if [ -L "${GIT_DIR}/objects" ]; then
-        # GITDIR is already an absolute path, but for symetry
+        # GITDIR is already an absolute path, but for symmetry
         # with the above, keep the same cd+readlink construct.
         OBJECTS_DIR="$(cd "${MAIN_DIR}"; readlink -e "${GIT_DIR}/objects")"
         mountpoints+=( "${OBJECTS_DIR}" )