gprs_ns2_sns: fix typo in doxygen comment

Fixes: 5bef2cc4bd ("ns2: Improve/extend doxygen comments for new ns2 implementation")
Change-Id: I21b51791aa149d9a5b13169d1cf8c2857c55774a
This commit is contained in:
Alexander Couzens 2021-02-15 05:05:15 +01:00 committed by laforge
parent e052c411e2
commit 23aec35750
1 changed files with 2 additions and 2 deletions

View File

@ -1470,7 +1470,7 @@ static struct osmo_fsm gprs_ns2_sns_bss_fsm = {
/*! Allocate an IP-SNS FSM for the BSS side.
* \param[in] nse NS Entity in which the FSM runs
* \param[in] id string identifier
* \retruns FSM instance on success; NULL on error */
* \returns FSM instance on success; NULL on error */
struct osmo_fsm_inst *ns2_sns_bss_fsm_alloc(struct gprs_ns2_nse *nse,
const char *id)
{
@ -1499,7 +1499,7 @@ err:
* \param[in] nsvc NS-VC on which the message was received
* \param[in] msg message buffer of the IP-SNS message
* \param[in] tp parsed TLV structure of message
* \retruns 0 on success; negative on error */
* \returns 0 on success; negative on error */
int ns2_sns_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp)
{
struct gprs_ns2_nse *nse = nsvc->nse;