diff --git a/docs/development/development.md b/docs/development/development.md
index aa51020578..d29966d214 100644
--- a/docs/development/development.md
+++ b/docs/development/development.md
@@ -35,6 +35,6 @@ To preview the KubeRay documentation locally, follow these steps:
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
```
-- Open your web browser and navigate to to view the documentation.
+- Open your web browser and navigate to to view the documentation.
If you make any changes to the documentation files, the local preview will automatically update to reflect those changes.
diff --git a/helm-chart/ray-cluster/README.md b/helm-chart/ray-cluster/README.md
index 60026949af..9a77dd95b5 100644
--- a/helm-chart/ray-cluster/README.md
+++ b/helm-chart/ray-cluster/README.md
@@ -34,15 +34,15 @@ kubectl get pods
# raycluster-kuberay-worker-workergroup-2jckt 1/1 Running 0 66s
# Step 6: Forward the port of Dashboard
-kubectl port-forward --address 0.0.0.0 svc/raycluster-kuberay-head-svc 8265:8265
+kubectl port-forward svc/raycluster-kuberay-head-svc 8265:8265
-# Step 7: Check ${YOUR_IP}:8265 for the Dashboard (e.g. 127.0.0.1:8265)
+# Step 7: Check 127.0.0.1:8265 for the Dashboard
# Step 8: Log in to Ray head Pod and execute a job.
kubectl exec -it ${RAYCLUSTER_HEAD_POD} -- bash
python -c "import ray; ray.init(); print(ray.cluster_resources())" # (in Ray head Pod)
-# Step 9: Check ${YOUR_IP}:8265/#/job. The status of the job should be "SUCCEEDED".
+# Step 9: Check 127.0.0.1:8265/#/job. The status of the job should be "SUCCEEDED".
# Step 10: Uninstall RayCluster
helm uninstall raycluster