# A label that is wrong in one place only

A label that is wrong in one place only: Name the one screen where a label or copy string says the wrong thing, and get it corrected everywhere it needs to be.

Source: https://codeherder.com/starter-briefs/label-wrong-in-one-place/

Starter briefs

Name the one screen where a label or copy string says the wrong thing, and get it corrected everywhere it needs to be.

[Request access →](https://codeherder.com/get-started/#request-access) [Part of: Clear the bug backlog →](https://codeherder.com/use-cases/clear-the-bug-backlog/)

## The brief

Copy this text as it is, or change the specifics to match your own case, then file it as a task.

Copy this and file it as a task

Copy brief

```
The label on one screen says the wrong thing. It reads correctly everywhere else the same concept shows up, so this looks like one string that got left behind after a rename. Find every place that still shows the old wording and update it to match the current name, without touching the parts of the UI that already say the right thing.
```

## Why this works

It is bounded to one wrong string with a known correct answer: the wording everywhere else already shows it. An agent can grep for the stale text and confirm every hit is fixed, and a reviewer can check the same short diff by eye.

How it runs

## Plan, code, review, merge, verify

1. plan Finds the exact string that renders the wrong label and searches the codebase for every other place it appears.
2. code Updates the stale string at its source and re-checks every call site that reads it.
3. review Confirms no other screen relied on the old wording on purpose, and that the diff touches only the string in question.
4. merge Opens a pull request that touches only the one label.
5. verify Confirms the screen now shows the correct label and no other screen changed.

## What you need on hand

- The screen where the wrong label shows
- The correct wording, taken from where it already appears right
- A person to confirm no other stale copy shares the same source string

## Done when

- The screen shows the corrected label
- No other screen's wording changed
- A search for the old string returns nothing left over

## Proof, not a promise

No real task in examples.ts matches this brief's exact shape yet. What's real is the mechanism: an agent traces a wrong label to its source string, finds every other place that string renders, and fixes it in one bounded diff a person can read in full.

Keep going

## Related briefs

[A control that is cut off on a phone File the button or menu that gets clipped on a narrow screen, and get it fixed.](https://codeherder.com/starter-briefs/control-cut-off-on-phone/) [Add a filter to a list we already have Name the list and what you want to narrow it by, and get a working filter control for it.](https://codeherder.com/starter-briefs/add-a-filter-to-a-list/) [A code example in the docs no longer runs Point at the broken example, and get a version that actually runs against the current code.](https://codeherder.com/starter-briefs/code-example-that-no-longer-runs/)

[← See every brief](https://codeherder.com/starter-briefs)
