From 04ce960a678cb3a562f8e275a6ba013f70411312 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sun, 11 Aug 2024 18:16:17 +0000 Subject: [PATCH] Minor documentation improvement FossilOrigin-Name: 4a11efb8df34bdea06109bdcfe411c32a7eaa482e886ec8ead3e89056df0ea70 --- src/exceptions/SL3Exception.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/exceptions/SL3Exception.h b/src/exceptions/SL3Exception.h index 7765139..7990b85 100644 --- a/src/exceptions/SL3Exception.h +++ b/src/exceptions/SL3Exception.h @@ -48,8 +48,8 @@ OF_ASSUME_NONNULL_BEGIN /** * @brief Creates a new SQLite3 exception. * - * @param connection The connection for which the exception occurred. - * @param errorCode The SQLite3 error code. + * @param connection The connection for which the exception occurred + * @param errorCode The SQLite3 error code * @return A new, autoreleased SQLite3 exception */ + (instancetype)exceptionWithConnection: (nullable SL3Connection *)connection @@ -60,8 +60,8 @@ OF_ASSUME_NONNULL_BEGIN /** * @brief Initializes an already allocated SQLite3 exception. * - * @param connection The connection for which the exception occurred. - * @param errorCode The SQLite3 error code. + * @param connection The connection for which the exception occurred + * @param errorCode The SQLite3 error code * @return An initialized SQLite3 exception */ - (instancetype)initWithConnection: (nullable SL3Connection *)connection