From 34d0c81c8556bcfbd9eaafe7e734d1695deef991 Mon Sep 17 00:00:00 2001 From: Nicolas Walger Date: Fri, 21 Jun 2024 10:31:11 +0200 Subject: [PATCH] Typo fix --- docs/known_issues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/known_issues.md b/docs/known_issues.md index d95a5388..596fc592 100644 --- a/docs/known_issues.md +++ b/docs/known_issues.md @@ -28,7 +28,7 @@ class Product { $this->imageFile = $imageFile; - // Only change the updated af if the file is really uploaded to avoid database updates. + // Only change the updatedAt property if the file is really uploaded to avoid database updates. // This is needed when the file should be set when loading the entity. if ($this->imageFile instanceof UploadedFile) { $this->updatedAt = new \DateTime('now');