From 947fa6fc2b086f0c2fad602b9921861c0bd18fd3 Mon Sep 17 00:00:00 2001 From: Cynthia Shang Date: Mon, 10 Dec 2018 15:43:52 -0500 Subject: [PATCH] Fix comment typo. Contributed by Cynthia Shang. --- src/storage/storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/storage.c b/src/storage/storage.c index acb481098..f7b1751b9 100644 --- a/src/storage/storage.c +++ b/src/storage/storage.c @@ -410,7 +410,7 @@ storagePath(const Storage *this, const String *pathExp) String *result = NULL; - // If there there is no path expression then return the base storage path + // If there is no path expression then return the base storage path if (pathExp == NULL) { result = strDup(this->path);