Skip to content

Commit

Permalink
bindings/kotlin: Fix typo in class name
Browse files Browse the repository at this point in the history
  • Loading branch information
madadam committed Oct 21, 2024
1 parent 230a3f1 commit 60bb7bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bindings/kotlin/lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ tasks.withType(DokkaTask) {
{
"customAssets": ["${file("docs/logo-icon.png")}"],
"customStyleSheets": ["${file("docs/logo-styles.css")}"],
"footerMessage": "Copyright (c) 2024 <a href=\\\"https://equalit.ie/\\\">eQualitie</a>."
"footerMessage": "Copyright (c) 2024 <a href=\\\"https://equalit.ie/\\\">eQualitie</a> | <a href=\\\"https://ouisync.net\\\">Ouisync website</a> | <a href=\\\"https://github.com/equalitie/ouisync\\\">Ouisync git repository</a>"
}
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ sealed class AccessChange {
packer.packNil()
}
}
is DiableAccess -> {
is DisableAccess -> {
packer.packString("disabled")
}
}
Expand All @@ -476,4 +476,4 @@ class EnableAccess(val secret: SetLocalSecret?) : AccessChange()
*
* @see [Repository.setAccess]
*/
class DiableAccess() : AccessChange()
class DisableAccess() : AccessChange()

0 comments on commit 60bb7bf

Please sign in to comment.