Repetition of two words ('at the at the')


Adjacent repeated words ("the the", "at the at the", "off off") are common slips that interrupt flow and make writing look unedited.

Below: quick diagnostics, realistic wrong/right pairs for work, school, and casual writing, rewrite patterns when a simple deletion sounds awkward, and quick checks you can use every time you proofread.

Quick fix

If two identical words appear next to each other, delete one and read the sentence aloud. If repetition is intentional for emphasis, mark it with punctuation or formatting. If deletion leaves an awkward rhythm, rewrite the clause.

  • Scan for identical adjacent words (for example, "the the"); delete one if unintentional.
  • Read the sentence slowly or aloud to catch stumbles.
  • Use a regex or grammar tool to flag duplicates, then confirm by eye for tone and punctuation.

Core explanation: how duplicates happen and why they matter

Duplicates often come from copy/paste leftovers, moving clauses, rushed typing, or voice-to-text errors. When you proofread quickly, your brain expects a word and skips the repeat.

They rarely change facts but do harm readability and credibility-especially in formal emails, reports, and graded work.

  • Common causes: copy/paste leftovers, cut-and-replace errors, dictation artifacts, and fast typing.

Spacing and punctuation: where repeats hide

Repeats can sit next to punctuation or across a line break and go unnoticed: "report,the" vs "report, the the". Fixing spacing around punctuation often makes the extra word obvious.

Also check line joins: hyphenation and wrapped text can split a duplicated unit across lines.

  • Inspect commas, colons, dashes, and line breaks for repeated adjacent words.
  • Normalize spacing or use a regex search like '\b(\w+)\s+\1\b' to find duplicates.
  • Wrong: Please review the the report, and send feedback by EOD.
  • Right: Please review the report, and send feedback by EOD.
  • Wrong: She typed the sentence and then hit enter enter.
  • Right: She typed the sentence and then hit enter.

Hyphenation and compounds: subtle duplicates

When you edit compound or hyphenated phrases, you can accidentally repeat the base word: "decision-making making". Treat compounds as single units while scanning.

  • Read the whole compound aloud (not word-by-word) to catch repeats inside compounds.
  • Wrong: We follow a state-of-the-art art approach.
  • Right: We follow a state-of-the-art approach.
  • Wrong: The decision-making making process stalled.
  • Right: The decision-making process stalled.

Grammar and meaning: when deleting affects structure

Removing a duplicated article or preposition is usually safe, but sometimes the repeat masks a missing or misplaced word. After deleting, re-check agreement and attachments so the sentence still parses cleanly.

  • Watch repeats that involve small function words (a, the, in, on); deleting one can change clause attachment.
  • If deletion leaves a stilted rhythm, rewrite rather than only delete.
  • Wrong: We're meeting in in the lobby at noon.
  • Right: We're meeting in the lobby at noon.
  • Wrong: He ran to to the car when he heard the shout.
  • Right: He ran to the car when he heard the shout.

Real usage and tone: when repetition is intentional

Repetition can be stylistic: emphasis ("very, very"), hesitation in dialogue ("I... I don't know"), or rhetorical effect. Keep intentional repeats only when they serve tone.

In formal writing, prefer a stronger word or a different structure instead of repeating.

  • If repetition is deliberate, mark it with punctuation or formatting (italics, ellipsis, dash) to show intent.
  • Usage: "No no - I'm sure." (deliberate, informal emphasis)
  • Usage: "Very, very certain" - acceptable in speech-like prose.
  • Usage: "I... I can't remember." (shows hesitation in dialogue)

Try your own sentence

Test the whole sentence, not just the phrase. Context usually makes the right choice clearer-delete, read aloud, and choose a rewrite if needed.

Examples: realistic wrong/right pairs (work, school, casual)

Below are simple corrections; when deletion sounds odd, see the rewrite patterns in the next section.

  • Work - Wrong: Please please send the invoice by Friday.
  • Work - Right: Please send the invoice by Friday.
  • Work - Wrong: I'll attach the the spreadsheet with the figures.
  • Work - Right: I'll attach the spreadsheet with the figures.
  • Work - Wrong: Let me know know if you need anything else.
  • Work - Right: Let me know if you need anything else.
  • School - Wrong: Write write a one-page summary of your project.
  • School - Right: Write a one-page summary of your project.
  • School - Wrong: The the hypothesis was tested in three trials.
  • School - Right: The hypothesis was tested in three trials.
  • School - Wrong: They completed completed the assignment on time.
  • School - Right: They completed the assignment on time.
  • Casual - Wrong: See you you later at the café.
  • Casual - Right: See you later at the café.
  • Casual - Wrong: I I can't believe we did that.
  • Casual - Right: I can't believe we did that.
  • Casual - Wrong: That was so so good - you should try it.
  • Casual - Right: That was so good - you should try it.

Rewrite help: patterns when deletion sounds odd

If deleting one copy produces a clumsy rhythm, try these patterns: replace the pair with a single stronger word, use a synonym, or restructure the sentence.

These fixes remove accidental repetition while improving clarity and variety.

  • Patterns: replace repetition with a stronger word; convert repeated phrase into a clause; move modifiers to avoid adjacency.
  • Rewrite: "He was very, very happy." → "He was ecstatic."
  • Rewrite: "She kept on on talking about it all night." → "She kept talking about it all night."
  • Rewrite: "There is an issue issue with the data that we need to resolve." → "We need to resolve an issue with the data."
  • Rewrite: "The meeting meeting notes were distributed." → "The meeting notes were distributed."
  • Rewrite: "I was completely completely certain about the result." → "I was completely certain about the result." (or simply "I was certain about the result.")

Memory tricks and quick checks

Build short habits that catch most duplicates: read aloud, trace each word with a finger, and run a separate surface pass after editing content.

Tools help, but a quick manual routine prevents false negatives and keeps tone intact.

  • Two-pass proofread: 1) content for ideas, 2) surface for duplicates and punctuation.
  • Read sentences aloud-duplicates create audible stumbles.
  • Use a regex search '\b(\w+)\s+\1\b' in editors that support it.
  • Tip: Finger-trace method - move your finger under each word as you read to expose adjacent repeats.

Similar mistakes to fix at the same time

When you find a double word, also scan for copy-paste leftovers: repeated prepositions, orphaned fragments, duplicated phrases ("each and every"), and doubled punctuation.

Fixing these together cleans up the sentence in one pass.

  • Watch for repeated prepositions ("in in"), redundant pairs ("each and every"), orphaned fragments after cuts, and doubled punctuation.
  • After merging sentences, re-read the whole sentence to ensure structure is intact.
  • Wrong: We will, at at the next meeting, finalize the dates.
  • Right: We will, at the next meeting, finalize the dates.

FAQ

Why do I keep typing the same word twice?

Most often it's an editing slip: you move part of a sentence and retype a word without removing the original. Fast typing, distracted proofreading, and voice-to-text errors also cause repeats.

How can I find double words in a long document quickly?

Run a grammar or spell checker that flags duplicates, then do a slow read-aloud pass for anything the tool misses. In editors with regex support, search for '\b(\w+)\s+\1\b'.

Is "very, very" wrong?

"Very, very" is acceptable when used intentionally for emphasis. In formal writing, prefer a single stronger word (for example, "extremely"). Intentional repetition should look purposeful.

Can tools catch all duplicates?

They catch most adjacent duplicates but can miss cases with odd punctuation, hyphenation, or formatting. Always do a manual surface pass.

What should I do if deleting the duplicate breaks rhythm?

If deletion leaves an awkward sentence, rewrite the clause using a stronger word, change clause order, or compress the idea. See the rewrite examples above for quick patterns.

Got a sentence you want to fix now?

Paste it into a grammar checker to flag duplicates, read the flagged line aloud, and apply a rewrite pattern from this page.

Make a two-stage proofread (content, then surface) a habit to catch double words before you hit send.

Check text for Repetition of two words ('at the at the')

Paste your text into the Linguix grammar checker to catch grammar, spelling, punctuation, and style issues instantly.

Available on: icon icon icon icon icon icon icon icon