diff --git a/include/asterisk/sched.h b/include/asterisk/sched.h
index eea7db98720f8334032207b1ddbf98adbffa2857..b1d47f019c84d9293f6e3ff2da705b47a92c5fd4 100644
--- a/include/asterisk/sched.h
+++ b/include/asterisk/sched.h
@@ -72,7 +72,7 @@ typedef int (*ast_sched_cb)(void *data);
 extern int ast_sched_add(struct sched_context *con, int when, ast_sched_cb callback, void *data);
 
 /*!Adds a scheduled event with rescheduling support
- * \param con Scehduler context to add
+ * \param con Scheduler context to add
  * \param when how many milliseconds to wait for event to occur
  * \param callback function to call when the amount of time expires
  * \param data data to pass to the callback