From 5b3b3fd3ed4372866730ae857e8c09d6e5d1167d Mon Sep 17 00:00:00 2001 From: Will Stamper Date: Sun, 8 Jun 2014 13:30:44 -0500 Subject: spelling fixes #827 --- src/nvim/os/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/os/event.c') diff --git a/src/nvim/os/event.c b/src/nvim/os/event.c index cdf40541d5..2ebf28f436 100644 --- a/src/nvim/os/event.c +++ b/src/nvim/os/event.c @@ -74,7 +74,7 @@ bool event_poll(int32_t ms) // Timeout passed as argument to the timer timer.data = &timed_out; // We only start the timer after the loop is running, for that we - // use an prepare handle(pass the interval as data to it) + // use a prepare handle(pass the interval as data to it) timer_prepare.data = &ms; uv_prepare_start(&timer_prepare, timer_prepare_cb); } else if (ms == 0) { -- cgit