From 3de7ede146c640afc9e0edd5be49720aa6805c35 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 8 Nov 2013 08:27:30 -0500 Subject: [PATCH] trivial: fix a comment cut-and-paste-o --- src/devices/nm-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c index d4830d74b9..886d417eaa 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -5112,7 +5112,7 @@ nm_device_take_down (NMDevice *self, gboolean block) if (NM_DEVICE_GET_CLASS (self)->take_down) NM_DEVICE_GET_CLASS (self)->take_down (self); - /* Wait for the device to come up if requested */ + /* Wait for the device to go down if requested */ while (block && nm_device_is_up (self) && (tries++ < 50)) g_usleep (200); }