diff --git a/client.c b/client.c index 711dbac1c..004e2176d 100644 --- a/client.c +++ b/client.c @@ -108,7 +108,7 @@ updatetitle(Client *c) xgettextprop(c->display, c->win, XInternAtom(c->display, "WM_NAME", False), c->name, sizeof(c->name)); } -/** Ban client and unmapped it +/** Ban client and unmap it * \param c the client */ void @@ -658,7 +658,7 @@ uicb_client_settrans(awesome_config *awesomeconf, } -/** Set borrder size +/** Set border size * \param awesomeconf awesome config * \param arg X, +X or -X * \ingroup ui_callback diff --git a/util.h b/util.h index 2ce1df490..434dba704 100644 --- a/util.h +++ b/util.h @@ -105,8 +105,8 @@ static inline void *xmemdup(const void *src, ssize_t size) /** \brief \c NULL resistant strlen. * - * Unlinke it's libc sibling, a_strlen returns a ssize_t, and supports its - * argument beeing NULL. + * Unlike it's libc sibling, a_strlen returns a ssize_t, and supports its + * argument being NULL. * * \param[in] s the string. * \return the string length (or 0 if \c s is \c NULL). @@ -118,8 +118,8 @@ static inline ssize_t a_strlen(const char *s) /** \brief \c NULL resistant strnlen. * - * Unlinke it's GNU libc sibling, a_strnlen returns a ssize_t, and supports - * its argument beeing NULL. + * Unlike it's GNU libc sibling, a_strnlen returns a ssize_t, and supports + * its argument being NULL. * * The a_strnlen() function returns the number of characters in the string * pointed to by \c s, not including the terminating \c \\0 character, but at