diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-05-11 10:26:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 10:26:50 +0200 |
commit | 979f4033ca1cd0be7f255f028d4cc637a216440d (patch) | |
tree | 9662f1da5b357eb75f921a73503ba142796826ab /lib/public/Accounts | |
parent | b6c034ac57bc63907dfadc29aca80edf09092064 (diff) | |
parent | d55a7c619d3733863387cc8c6269050b72cbff0c (diff) | |
download | nextcloud-server-979f4033ca1cd0be7f255f028d4cc637a216440d.tar.gz nextcloud-server-979f4033ca1cd0be7f255f028d4cc637a216440d.zip |
Merge pull request #33381 from luzpaz/fix/lib-public-typos
Diffstat (limited to 'lib/public/Accounts')
-rw-r--r-- | lib/public/Accounts/IAccount.php | 2 | ||||
-rw-r--r-- | lib/public/Accounts/IAccountPropertyCollection.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Accounts/IAccount.php b/lib/public/Accounts/IAccount.php index 190896a54ef..e024ced5bda 100644 --- a/lib/public/Accounts/IAccount.php +++ b/lib/public/Accounts/IAccount.php @@ -134,7 +134,7 @@ interface IAccount extends \JsonSerializable { public function setPropertyCollection(IAccountPropertyCollection $propertyCollection): IAccount; /** - * Returns the requestes propery collection (multi-value properties) + * Returns the requested property collection (multi-value properties) * * @throws PropertyDoesNotExistException against invalid collection name * @since 22.0.0 diff --git a/lib/public/Accounts/IAccountPropertyCollection.php b/lib/public/Accounts/IAccountPropertyCollection.php index 3f42cb1e6b7..c4ae5b5abc0 100644 --- a/lib/public/Accounts/IAccountPropertyCollection.php +++ b/lib/public/Accounts/IAccountPropertyCollection.php @@ -38,7 +38,7 @@ use JsonSerializable; */ interface IAccountPropertyCollection extends JsonSerializable { /** - * retuns the collection name + * returns the collection name * * @since 22.0.0 */ |