diff --git a/docs/migration-from-v7.md b/docs/migration-from-v7.md index 64e12621df..1a12c5a3fa 100644 --- a/docs/migration-from-v7.md +++ b/docs/migration-from-v7.md @@ -14,7 +14,7 @@ $.quiet = true // to completely turn off logging // import {ssh} from 'zx' ↓ import {ssh} from 'webpod' -const remote = ssh('user@host') +const remote = ssh({remoteUser: 'user', hostname: 'host'}) await remote`echo foo` ```