Comment typos.
This commit is contained in:
parent
01d24558b1
commit
dcff13a5e7
4
client.c
4
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));
|
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
|
* \param c the client
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
|
@ -658,7 +658,7 @@ uicb_client_settrans(awesome_config *awesomeconf,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Set borrder size
|
/** Set border size
|
||||||
* \param awesomeconf awesome config
|
* \param awesomeconf awesome config
|
||||||
* \param arg X, +X or -X
|
* \param arg X, +X or -X
|
||||||
* \ingroup ui_callback
|
* \ingroup ui_callback
|
||||||
|
|
8
util.h
8
util.h
|
@ -105,8 +105,8 @@ static inline void *xmemdup(const void *src, ssize_t size)
|
||||||
|
|
||||||
/** \brief \c NULL resistant strlen.
|
/** \brief \c NULL resistant strlen.
|
||||||
*
|
*
|
||||||
* Unlinke it's libc sibling, a_strlen returns a ssize_t, and supports its
|
* Unlike it's libc sibling, a_strlen returns a ssize_t, and supports its
|
||||||
* argument beeing NULL.
|
* argument being NULL.
|
||||||
*
|
*
|
||||||
* \param[in] s the string.
|
* \param[in] s the string.
|
||||||
* \return the string length (or 0 if \c s is \c NULL).
|
* \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.
|
/** \brief \c NULL resistant strnlen.
|
||||||
*
|
*
|
||||||
* Unlinke it's GNU libc sibling, a_strnlen returns a ssize_t, and supports
|
* Unlike it's GNU libc sibling, a_strnlen returns a ssize_t, and supports
|
||||||
* its argument beeing NULL.
|
* its argument being NULL.
|
||||||
*
|
*
|
||||||
* The a_strnlen() function returns the number of characters in the string
|
* 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
|
* pointed to by \c s, not including the terminating \c \\0 character, but at
|
||||||
|
|
Loading…
Reference in New Issue