diff --git a/docs/deployment.md b/docs/deployment.md index e8466b52..5d6f246e 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -230,7 +230,7 @@ SUBNET_INDEX=0 # My URL. The URL will be synced to other nodes in the cluster so that each node can discover other nodes. MY_URL=https://gateway.test2.dstack.phala.network:9202 -# Bootnode URL. If you want to deploy a multi-node dstack-gateway cluster, set the bootnode URL to the URL of another node already deployed or planed to be deployed later. +# Bootnode URL. If you want to deploy a multi-node dstack-gateway cluster, set the bootnode URL to the URL of another node already deployed or planned to be deployed later. BOOTNODE_URL=https://gateway.test2.dstack.phala.network:9202 # dstack OS image name diff --git a/vmm/src/main_routes.rs b/vmm/src/main_routes.rs index f4ef9a45..15d364b5 100644 --- a/vmm/src/main_routes.rs +++ b/vmm/src/main_routes.rs @@ -144,7 +144,7 @@ fn vm_logs( loop { // This is a workaround for https://github.com/rwf2/Rocket/issues/2888 - // However, If is is accessed via vscode's port forwarding, it will still get trouble: + // However, If it is accessed via vscode's port forwarding, it will still get trouble: // https://github.com/microsoft/vscode-remote-release/issues/3561 let next = match timeout(Duration::from_secs(60), tailer.next()).await { Ok(next) => next,