@@ -33,11 +33,11 @@ * @brief Returns the value for the specified key * * @param key The key of the value to return * @return The value for the specified key */ -- (nullable id)valueForKey: (OFString*)key; +- (nullable id)valueForKey: (OFString *)key; /*! * @brief This is called by @ref valueForKey: if the specified key does not * exist. * @@ -44,20 +44,20 @@ * By default, this throws an @ref OFUndefinedKeyException. * * @param key The undefined key of the value to return * @return The value for the specified undefined key */ -- (nullable id)valueForUndefinedKey: (OFString*)key; +- (nullable id)valueForUndefinedKey: (OFString *)key; /*! * @brief Set the value for the specified key * * @param value The value for the specified key * @param key The key of the value to set */ - (void)setValue: (nullable id)value - forKey: (OFString*)key; + forKey: (OFString *)key; /*! * @brief This is called by @ref setValue:forKey: if the specified key does not * exist. * @@ -65,19 +65,19 @@ * * @param value The value for the specified undefined key * @param key The undefined key of the value to set */ - (void)setValue: (nullable id)value - forUndefinedKey: (OFString*)key; + forUndefinedKey: (OFString *)key; /*! * @brief This is called by @ref setValue:forKey: if the specified key is a * scalar, but the value specified is `nil`. * * By default, this throws an @ref OFInvalidArgumentException. * * @param key The key for which the value `nil` was specified */ -- (void)setNilValueForKey: (OFString*)key; +- (void)setNilValueForKey: (OFString *)key; @end OF_ASSUME_NONNULL_END