Minor cleanup on the doc

This commit is contained in:
Benoit Marty 2021-05-12 12:41:19 +02:00 committed by Benoit Marty
parent 946208a84d
commit d6e3bb59f4
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ interface Room :
* @param beforeLimit how many events before the result are returned. * @param beforeLimit how many events before the result are returned.
* @param afterLimit how many events after the result are returned. * @param afterLimit how many events after the result are returned.
* @param includeProfile requests that the server returns the historic profile information for the users that sent the events that were returned. * @param includeProfile requests that the server returns the historic profile information for the users that sent the events that were returned.
* @param callback Callback to get the search result * @return The search result
*/ */
suspend fun search(searchTerm: String, suspend fun search(searchTerm: String,
nextBatch: String?, nextBatch: String?,

View File

@ -509,7 +509,7 @@ fun selectTxtFileToWrite(
* @param sourceFile the file source path * @param sourceFile the file source path
* @param dstDirPath the dst path * @param dstDirPath the dst path
* @param outputFilename optional the output filename * @param outputFilename optional the output filename
* @param callback the asynchronous callback * @return the created file
*/ */
@Suppress("DEPRECATION") @Suppress("DEPRECATION")
fun saveFileIntoLegacy(sourceFile: File, dstDirPath: File, outputFilename: String?): File? { fun saveFileIntoLegacy(sourceFile: File, dstDirPath: File, outputFilename: String?): File? {