await (wait)


Mixing await and wait weakens clarity. Short rule: await is transitive (it takes a direct object: await X). wait is usually intransitive and pairs with a preposition (wait for X). Never write "await for."

Quick answer - when to use which

Use await when the verb directly takes an object (await the decision). Use wait when you delay action or stay put and normally use a preposition (wait for the decision).

  • Correct: She awaited the verdict. (await + direct object)
  • Correct: She waited for the verdict. (wait + for + object)
  • Wrong: She awaited for the verdict. → Remove "for" or change to "wait for"

Core explanation: grammar and structure

Await is transitive: it takes a direct object immediately (await + noun or clause). Wait is usually intransitive and needs a preposition to name what you are waiting for (wait for + noun/clause) or is followed by an infinitive (wait to + verb).

  • await + noun/clause → The team awaited the results.
  • wait + for + noun/clause → The team waited for the results.
  • wait + to + verb → Wait to sign the form.
  • Never: await + for (await for) - it's ungrammatical.
  • Wrong: I awaited for a reply.
  • Right: I waited for a reply.
  • Wrong: She waited the committee's decision anxiously.
  • Right: She awaited the committee's decision anxiously.
  • Wrong: We await on your instructions.
  • Right: We await your instructions.

Common mistakes and quick fixes

Most errors fall into three patterns: adding "for" after await, using wait with a direct object, and using await when a casual tone needs wait.

  • Error: await + for → Fix: remove "for" or use "wait for".
  • Error: wait + object → Fix: add "for" (wait for the object) or change to "await" for a formal direct-object construction.
  • Tone: prefer wait/wait for for informal messages; use await for formal contexts.
  • Wrong: I can't await the weekend!
  • Right: I can't wait for the weekend!
  • Wrong: They waited the contract.
  • Right: They awaited the contract.
  • Wrong: Please await for confirmation.
  • Right: Please await confirmation. -or- Please wait for confirmation.

Examples: work, school, and casual (copy-and-paste fixes)

Each pair shows a common wrong sentence and a correct rewrite appropriate for the context.

Work

  • Wrong: We await for your approval before we proceed.
    Right: We await your approval before we proceed.
  • Wrong: The team waited the client's response all day.
    Right: The team waited for the client's response all day.
  • Wrong: Please await for the revised contract.
    Right: Please await the revised contract. -or- Please wait for the revised contract.

School

  • Wrong: I awaited for the exam results anxiously.
    Right: I waited for the exam results anxiously.
  • Wrong: The professor waited feedback from the committee.
    Right: The professor awaited feedback from the committee.
  • Wrong: Students can't await the project deadline.
    Right: Students can't wait for the project deadline.

Casual

  • Wrong: I await the party tonight!
    Right: I can't wait for the party tonight!
  • Wrong: She awaited a text back.
    Right: She waited for a text back.
  • Wrong: Await your reply soon.
    Right: I'll wait for your reply soon.

Why a good editor helps (promo block)

A simple rule works often, but drafts include tone, idiom, and edge cases. A grammar editor flags errors like "await for," suggests tone-appropriate rewrites, and helps with related issues such as hyphenation and prepositions.

Use an editor to get context-aware suggestions and quick formal/neutral rewrites for your sentence.

Rewrite help: quick rewrites you can paste

Choose the formal (await) version for reports or official language and the neutral (wait/wait for) version for emails and messages.

  • Formal: We await the board's decision.
  • Neutral: We'll wait for the board's decision.
  • Polite request: Please await confirmation. -or- Please wait for confirmation.

Try your own sentence

Test the whole sentence, not the isolated verb. Ask: does the verb take a direct object immediately after it? If yes, await may work. If you naturally need "for," use wait for.

Memory trick - a short mental test

Ask: "Do I need to say 'for' after this verb?" If yes, use wait. If no, await may be correct. Another quick check: insert a direct object immediately after the verb - if it still reads naturally, await is fine.

  • If you would naturally say "wait for X," then write "wait for X."
  • If you can write "await X" with no "for," then "await" is correct.
  • When in doubt about tone, choose "wait for" for everyday writing.

Spacing, hyphenation & small grammar points

Errors that co-occur with await/wait include missing hyphens in compound modifiers, confusing the noun "a wait" with the verb "await," and preposition confusion like "wait on" vs. "wait for."

  • Hyphenate compounds before a noun: long-awaited decision (before the noun); the decision was long awaited (after the noun, no hyphen).
  • "a wait" = noun: There was a long wait. "await" = verb: We awaited the decision.
  • Don't try to fix "await for" by adding spaces - the grammar is wrong, not the spacing.
  • Wrong: long awaited award
    Right: long-awaited award
  • Wrong: The server waited on the table.
    Right: The server waited on the table. (means "served the table") - Use "waited for the table" if you mean someone waited to be seated.

Real usage and special contexts (including programming)

In everyday English, await sounds formal or literary. Use it in press releases, reports, or when the direct-object form fits. For chat, social posts, and informal emails, wait/wait for is natural.

Programming note: await is a reserved keyword in many languages (JavaScript, Python async, C#). In code, await is a technical operator - treat it as terminology rather than ordinary grammar.

  • Press release (formal): The company awaits further guidance from regulators.
  • Email (neutral): We'll wait for your guidance.
  • Code: await fetch(url) - "await" is a keyword in an async function.

Similar mistakes and related verbs to watch

Writers confuse expect, anticipate, and wait, or mix up idioms like wait on vs. wait for. Choose the verb that matches meaning and register:

  • expect vs. await: Expect = think likely (I expect good news). Await = wait for something to arrive (I await good news).
  • anticipate often implies planning or prediction (We anticipate a busy semester).
  • wait on (serve) vs. wait for (delay for): "She waited on customers" ≠ "She waited for customers."
  • Wrong: I await that the event will be successful.
    Right: I expect that the event will be successful.
  • Wrong: She waited on a reply from the publisher.
    Right: She waited for a reply from the publisher.

FAQ

Can I use await and wait interchangeably?

No. Await takes a direct object (await X). Wait usually needs a preposition (wait for X) or a different structure. Interchanging them often produces grammar errors or an odd tone.

Is "await for" ever correct?

No. "Await for" is redundant and incorrect in standard English. Either remove "for" (await the object) or use "wait for the object."

When should I use await instead of wait?

Use await when the verb directly takes the object and you want a formal tone (The committee awaited the verdict). Use wait/wait for for everyday speech, emails, and most neutral writing.

Are there differences between American and British English here?

No major difference in the await vs. wait rule. Both varieties avoid "await for." Some idioms (like "wait on" meaning "serve") are more common in American English.

How does "await" in programming affect my writing?

In programming, await is a language keyword used to pause async functions. When writing about code, treat "await" as technical terminology; in normal prose follow the grammar rules above.

Try fixing one of your sentences now

Paste a sentence and ask: does the verb take a direct object immediately after it? If yes, await might be fine. If you need "for," use wait for. When in doubt, choose the neutral "wait for" for everyday messages.

Use the rewrite examples above to copy the correct version into your email, essay, or chat.

Check text for await (wait)

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