From 0aebdd36202f5c9242a2d0cc32886654b862e389 Mon Sep 17 00:00:00 2001 From: "Jonathan A. McCormick, Jr." <67705789+JonathanMcCormickJr@users.noreply.github.com> Date: Sun, 5 Oct 2025 19:50:44 -0500 Subject: [PATCH] Update README.md Consistent capitalization for status options --- 4. Projects/1. CLI/Problem/Stage 2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4. Projects/1. CLI/Problem/Stage 2/README.md b/4. Projects/1. CLI/Problem/Stage 2/README.md index bd59595..07b92c9 100644 --- a/4. Projects/1. CLI/Problem/Stage 2/README.md +++ b/4. Projects/1. CLI/Problem/Stage 2/README.md @@ -76,7 +76,7 @@ __NOTE 1:__ Status needs to implement the `Display` trait so it can be printed t * OPEN -> "OPEN" * InProgress -> "IN PROGRESS" * Resolved -> "RESOLVED" -* Closed -> "Closed" +* Closed -> "CLOSED" __NOTE 2:__ `page_helpers.rs` contains a function called `get_column_string()` which is used to confine text to a specific character width. A dependency called `ellipse` was added to help accomplish this. Use the `truncate_ellipse()` function from the `ellipse` crate to implement `get_column_string()`.