From 5c7947299ff00594b00cb03c9b4345ee48678ceb Mon Sep 17 00:00:00 2001 From: eikek Date: Mon, 8 Nov 2021 00:15:14 +0100 Subject: [PATCH] Fix scaladoc --- .../docspell/restserver/http4s/ContentDisposition.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/restserver/src/main/scala/docspell/restserver/http4s/ContentDisposition.scala b/modules/restserver/src/main/scala/docspell/restserver/http4s/ContentDisposition.scala index 7a5e389b..18e54390 100644 --- a/modules/restserver/src/main/scala/docspell/restserver/http4s/ContentDisposition.scala +++ b/modules/restserver/src/main/scala/docspell/restserver/http4s/ContentDisposition.scala @@ -18,13 +18,13 @@ import org.http4s.{Header, ParseFailure, ParseResult} import org.typelevel.ci.CIString import org.typelevel.ci._ -/** A replacement for http4s' `Content-Disposition` class with a slightly modified parser - * to allow utf8 filenames. +/** A replacement for `Content-Disposition` class with a slightly modified parser to allow + * utf8 filenames. * * The usage of this class is already in the `Part` class to retrieve the filename. This * class can be used as follows: * - * {{{ ContentDisposition.getFileName(part) }} + * {{{ContentDisposition.getFileName(part)}}} * * where `part` is of type `multipart.Part[F]`. */