From ee393d5ca63357703b04cf71ab6198d69199318e Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 17:21:18 -0700 Subject: [PATCH] Fix 'occured' -> 'occurred' typos in SeeDot M3 runner printf messages Three printf error messages in tools/SeeDot/seedot/m3/main.c read 'An error occured while opening the X/Y/output file'. Surfaced to the user on the M3 runner's stdout/stderr. String-literal-only change. Signed-off-by: SAY-5 --- tools/SeeDot/seedot/m3/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/SeeDot/seedot/m3/main.c b/tools/SeeDot/seedot/m3/main.c index e77111ec3..3d63fb571 100644 --- a/tools/SeeDot/seedot/m3/main.c +++ b/tools/SeeDot/seedot/m3/main.c @@ -104,15 +104,15 @@ int main(int argc, char** argv) { } if (xFile == NULL) { - printf("An error occured while opening the X (input) file.\n"); + printf("An error occurred while opening the X (input) file.\n"); return -1; } if (yFile == NULL) { - printf("An error occured while opening the Y (ground truth) file.\n"); + printf("An error occurred while opening the Y (ground truth) file.\n"); return -1; } if (outputLog == NULL) { - printf("An error occured while opening the output log file.\n"); + printf("An error occurred while opening the output log file.\n"); return -1; }