From 683080d490cfcd610e737dbd31566c565dbb0bf3 Mon Sep 17 00:00:00 2001 From: Erin Becker Date: Mon, 17 Nov 2025 16:50:34 -0800 Subject: [PATCH] fix list formatting --- episodes/analyzing.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/episodes/analyzing.md b/episodes/analyzing.md index ab5b5728..1787fe7e 100644 --- a/episodes/analyzing.md +++ b/episodes/analyzing.md @@ -41,13 +41,15 @@ In this example, the coding scheme includes: task, emotional state, and memory i ## Categorizing errors If you are interested in errors, you may use error categories as part of your coding scheme. Common error types include: -- Failed attempts: Entering invalid data, such as incorrect login credentials or formatting errors. + +- Failed attempts: Entering invalid data, such as incorrect login credentials or formatting errors. - Misnavigation: Navigating to unintended pages or sections. - Repeated actions: Attempting the same action multiple times unsuccessfully. - Incomplete tasks: Abandoning a task or failing to achieve the intended goal. - System errors: Triggering error messages or encountering broken functionality. You could also assign a severity to errors. A severity scale you could use is: + - Critical: Prevents users from completing a task (e.g., broken functionality or unclear instructions). - Moderate: Slows users down or causes frustration but doesn't prevent task completion. - Minor: Small mistakes with minimal impact on task completion.