From 6ca03de35183674190187e4da421fed08b5a52a5 Mon Sep 17 00:00:00 2001 From: Mac Browning Date: Mon, 15 Feb 2016 21:09:32 -0500 Subject: [PATCH] remove incomplete thought --- docs/user-guide/pod-states.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/pod-states.md b/docs/user-guide/pod-states.md index 39034722e2a..ff3eccf87c1 100644 --- a/docs/user-guide/pod-states.md +++ b/docs/user-guide/pod-states.md @@ -85,7 +85,7 @@ Three types of controllers are currently available: - Use a [`Job`](jobs.md) for pods which are expected to terminate (e.g. batch computations). - Use a [`ReplicationController`](replication-controller.md) for pods which are not expected to - terminate, and where (e.g. web servers). + terminate (e.g. web servers). - Use a [`DaemonSet`](../admin/daemons.md): Use for pods which need to run 1 per machine because they provide a machine-specific system service. If you are unsure whether to use ReplicationController or Daemon, then see [Daemon Set versus