Skip to content

Commit

Permalink
Changed Scaladoc comment
Browse files Browse the repository at this point in the history
Supposedly now the generation of the scaladoc should not fail
  • Loading branch information
Hombre-x committed Jun 30, 2024
1 parent 47c8cbf commit 7f8b7f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ object FilesOs {
* Similar to append, but appends a single line to the end file as a newline
* instead of overwriting it.
*
* Equivalent to `append(path)(s"\n$contents")`
* Equivalent to `append(path, '\n' + contents)`
*
* @param path
* The path to write to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ package object path {
* Similar to append, but appends a single line to the end file as a newline
* instead of overwriting it.
*
* Equivalent to `path.append(s"\n$contents")`
* Equivalent to `path.append('\n' + contents)`
*
* @param path
* The path to write to
Expand Down

0 comments on commit 7f8b7f6

Please sign in to comment.