Index: src/OFFile.h ================================================================== --- src/OFFile.h +++ src/OFFile.h @@ -211,17 +211,17 @@ /*! * @brief Creates a symbolic link for an item. * * Not available on Windows. * - * @param source The path of the item for which a symbolic link should be - * created * @param destination The path of the item which should symbolically link to the * source + * @param source The path of the item for which a symbolic link should be + * created */ -+ (void)createSymbolicLinkAtPath: (OFString*)source - withDestinationPath: (OFString*)destination; ++ (void)createSymbolicLinkAtPath: (OFString*)destination + withDestinationPath: (OFString*)source; /*! * @brief Returns the destination of the symbolic link at the specified path. * * @param path The path to the symbolic link Index: src/OFFile.m ================================================================== --- src/OFFile.m +++ src/OFFile.m @@ -641,12 +641,12 @@ objc_autoreleasePoolPop(pool); } #endif #ifdef OF_HAVE_SYMLINK -+ (void)createSymbolicLinkAtPath: (OFString*)source - withDestinationPath: (OFString*)destination ++ (void)createSymbolicLinkAtPath: (OFString*)destination + withDestinationPath: (OFString*)source { void *pool; if (source == nil || destination == nil) @throw [OFInvalidArgumentException exception];