Index: src/OFFile.h ================================================================== --- src/OFFile.h +++ src/OFFile.h @@ -37,11 +37,11 @@ #endif /*! * @class OFFile OFFile.h ObjFW/OFFile.h * - * @brief A class which provides functions to read and write files. + * @brief A class which provides methods to read and write files. */ @interface OFFile: OFSeekableStream { int _fd; bool _atEndOfStream; Index: src/OFMD5Hash.h ================================================================== --- src/OFMD5Hash.h +++ src/OFMD5Hash.h @@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFMD5Hash OFMD5Hash.h ObjFW/OFMD5Hash.h * - * @brief A class which provides functions to create an MD5 hash. + * @brief A class which provides methods to create an MD5 hash. */ @interface OFMD5Hash: OFObject { uint32_t _state[4]; uint64_t _bits; Index: src/OFRIPEMD160Hash.h ================================================================== --- src/OFRIPEMD160Hash.h +++ src/OFRIPEMD160Hash.h @@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFRIPEMD160Hash OFRIPEMD160Hash.h ObjFW/OFRIPEMD160Hash.h * - * @brief A class which provides functions to create a RIPEMD-160 hash. + * @brief A class which provides methods to create a RIPEMD-160 hash. */ @interface OFRIPEMD160Hash: OFObject { uint32_t _state[5]; uint64_t _bits; Index: src/OFSHA1Hash.h ================================================================== --- src/OFSHA1Hash.h +++ src/OFSHA1Hash.h @@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFSHA1Hash OFSHA1Hash.h ObjFW/OFSHA1Hash.h * - * @brief A class which provides functions to create an SHA-1 hash. + * @brief A class which provides methods to create an SHA-1 hash. */ @interface OFSHA1Hash: OFObject { uint32_t _state[5]; uint64_t _bits; Index: src/OFSHA224Hash.h ================================================================== --- src/OFSHA224Hash.h +++ src/OFSHA224Hash.h @@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFSHA224Hash OFSHA224Hash.h ObjFW/OFSHA224Hash.h * - * @brief A class which provides functions to create an SHA-224 hash. + * @brief A class which provides methods to create an SHA-224 hash. */ @interface OFSHA224Hash: OFSHA224Or256Hash @end OF_ASSUME_NONNULL_END Index: src/OFSHA256Hash.h ================================================================== --- src/OFSHA256Hash.h +++ src/OFSHA256Hash.h @@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFSHA256Hash OFSHA256Hash.h ObjFW/OFSHA256Hash.h * - * @brief A class which provides functions to create an SHA-256 hash. + * @brief A class which provides methods to create an SHA-256 hash. */ @interface OFSHA256Hash: OFSHA224Or256Hash @end OF_ASSUME_NONNULL_END Index: src/OFSHA384Hash.h ================================================================== --- src/OFSHA384Hash.h +++ src/OFSHA384Hash.h @@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFSHA384Hash OFSHA384Hash.h ObjFW/OFSHA384Hash.h * - * @brief A class which provides functions to create an SHA-384 hash. + * @brief A class which provides methods to create an SHA-384 hash. */ @interface OFSHA384Hash: OFSHA384Or512Hash @end OF_ASSUME_NONNULL_END Index: src/OFSHA512Hash.h ================================================================== --- src/OFSHA512Hash.h +++ src/OFSHA512Hash.h @@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFSHA512Hash OFSHA512Hash.h ObjFW/OFSHA512Hash.h * - * @brief A class which provides functions to create an SHA-512 hash. + * @brief A class which provides methods to create an SHA-512 hash. */ @interface OFSHA512Hash: OFSHA384Or512Hash @end OF_ASSUME_NONNULL_END Index: src/OFStreamSocket.h ================================================================== --- src/OFStreamSocket.h +++ src/OFStreamSocket.h @@ -21,11 +21,11 @@ OF_ASSUME_NONNULL_BEGIN /*! * @class OFStreamSocket OFStreamSocket.h ObjFW/OFStreamSocket.h * - * @brief A class which provides functions to create and use stream sockets. + * @brief A class which provides methods to create and use stream sockets. */ @interface OFStreamSocket: OFStream { of_socket_t _socket; bool _atEndOfStream; Index: src/OFTCPSocket.h ================================================================== --- src/OFTCPSocket.h +++ src/OFTCPSocket.h @@ -51,11 +51,11 @@ #endif /*! * @class OFTCPSocket OFTCPSocket.h ObjFW/OFTCPSocket.h * - * @brief A class which provides functions to create and use TCP sockets. + * @brief A class which provides methods to create and use TCP sockets. * * To connect to a server, create a socket and connect it. * To create a server, create a socket, bind it and listen on it. */ @interface OFTCPSocket: OFStreamSocket Index: src/OFUDPSocket.h ================================================================== --- src/OFUDPSocket.h +++ src/OFUDPSocket.h @@ -68,11 +68,11 @@ #endif /*! * @class OFUDPSocket OFUDPSocket.h ObjFW/OFUDPSocket.h * - * @brief A class which provides functions to create and use UDP sockets. + * @brief A class which provides methods to create and use UDP sockets. * * Addresses are of type @ref of_udp_socket_address_t. You can use @ref * getHost:andPort:forAddress: to create an address for a host / port pair and * @ref getHost:andPort:forAddress: to get the host / port pair for an address. * If you want to compare two addresses, you can use