Concluding Absence From One Spelling
A search for a company name returned nothing, so the answer was "there is no record." The record existed under a different spelling of the same name.
A grep on a single spelling of a company name returned zero hits, and that became a three-day claim that no record existed. The record was there under a variant spelling with one letter changed. Absence in one form is not evidence of absence.
Pattern
You search stored notes for a company name. 0 hits. You report "there is no record of this anywhere" — and you keep reporting it, because the search was clean and you have no reason to doubt it.
The record existed the whole time, filed under a spelling that differed by one letter.
Why it looks right
A search that returns nothing feels like a stronger result than one that returns something. There is no ambiguity to interpret, no judgement call. It reads as a fact about the world rather than a fact about the query.
It is also cheap to run, which quietly encourages running exactly one.
Why it fails
Proper nouns are the least stable strings in any store of notes. A company name arrives by ear on a phone call, by autocorrect in an email, transliterated from another alphabet, or with an internal abbreviation nobody wrote down. ph and f swap. Diacritics vanish. A space becomes a hyphen.
Every one of those produces a file that a literal search will never return, and the search reports the same confident nothing it would report if the record genuinely did not exist. The failure mode is silent by construction.
Instead
For proper nouns — companies, people, brands, product lines — search variants, not the string you were handed:
ph/f· with and without diacritics · space / hyphen / joined · abbreviation and full form
And phrase the result honestly. Not "there is no record" but "no record under these four spellings." The second sentence invites the correction that the first one blocks. In this case the correction cost 3 days and arrived only because someone finally asked out loud. The record had been sitting in a calendar note the whole time, one letter away from the query.
$ head -12 absence-from-one-spelling.md
$ cite absence-from-one-spelling
Citation id SV-8551 is stable. It resolves at
https://stillvalid.dev/c/SV-8551 even if this artifact moves to another section,
which a bare URL does not survive. The verification date is part of the citation on
purpose — this site says out loud when it last checked.
[Concluding Absence From One Spelling](https://stillvalid.dev/patterns/absence-from-one-spelling) — stillvalid, SV-8551 (anti-pattern, verified 2026-08-14)