diff options
author | Katerina Barone-Adesi <kat.obsc@gmail.com> | 2013-02-15 13:27:59 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2013-02-15 13:27:59 +0100 |
commit | c28c6a02d224ed74878fe4899870d693de15f54d (patch) | |
tree | 00b671cd75e4286e323c8ca33899d57821292a50 /include/osmocom/core/prim.h | |
parent | a5007dbdc59e46c09a2ac6c52fc53a7712812cd9 (diff) |
misc: Doxygen tweaks: fixed some typos and minor errors
Doxygen generates quite a lot of warnings on libosmocore. Some of them
are obvious typos - this patch aims to fix such low-hanging fruit.
Diffstat (limited to 'include/osmocom/core/prim.h')
-rw-r--r-- | include/osmocom/core/prim.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/osmocom/core/prim.h b/include/osmocom/core/prim.h index b1026fe3..f61d8084 100644 --- a/include/osmocom/core/prim.h +++ b/include/osmocom/core/prim.h @@ -5,7 +5,7 @@ * @{ */ -/*! \file prim.c */ +/*! \file prim.h */ #include <stdint.h> #include <osmocom/core/msgb.h> @@ -37,7 +37,7 @@ struct osmo_prim_hdr { /*! \brief initialize a primitive header * \param[in,out] oph primitive header * \param[in] sap Service Access Point - * \param[in] primtive Primitive Number + * \param[in] primitive Primitive Number * \param[in] operation Primitive Operation (REQ/RESP/IND/CONF) * \param[in] msg Message */ @@ -55,4 +55,6 @@ osmo_prim_init(struct osmo_prim_hdr *oph, unsigned int sap, /*! \brief primitive handler callback type */ typedef int (*osmo_prim_cb)(struct osmo_prim_hdr *oph, void *ctx); +/*! @} */ + #endif /* OSMO_PRIMITIVE_H */ |