From 7efff5f5e7e28804344870de4a4c992d8d38fc15 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 3 Dec 2020 10:16:48 -0800 Subject: [PATCH] fix comments --- nx/include/switch/services/ectx.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nx/include/switch/services/ectx.h b/nx/include/switch/services/ectx.h index ba5e697b..bc67fb2a 100644 --- a/nx/include/switch/services/ectx.h +++ b/nx/include/switch/services/ectx.h @@ -1,6 +1,6 @@ /** * @file ectx.h - * @brief Error Context services IPC wrapper. + * @brief [11.0.0+] Error Context services IPC wrapper. * @author SciresM * @copyright libnx Authors */ @@ -9,7 +9,7 @@ #include "../kernel/event.h" #include "../sf/service.h" -/// [11.0.0+] Initialize ectx:r. +/// Initialize ectx:r. Result ectxrInitialize(void); /// Exit ectx:r. @@ -19,7 +19,7 @@ void ectxrExit(void); Service* ectxrGetServiceSession(void); /** - * @brief [11.0.0+] Retrieves the error context associated with an error descriptor and result. + * @brief Retrieves the error context associated with an error descriptor and result. * @return Result code. */ Result ectxrPullContext(s32 *out0, u32 *out_total_size, u32 *out_size, void *dst, size_t dst_size, u32 descriptor, Result result);