]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix typos in lib/public subdirectory 33381/head
authorSimon L <szaimen@e.mail.de>
Wed, 10 May 2023 09:56:34 +0000 (11:56 +0200)
committerSimon L <szaimen@e.mail.de>
Wed, 10 May 2023 09:56:34 +0000 (11:56 +0200)
Found via `codespell -q 3 -S l10n -L jus ./lib/public`

Signed-off-by: luz paz <luzpaz@github.com>
Update lib/public/Accounts/IAccount.php

Signed-off-by: luz paz <luzpaz@github.com>
Signed-off-by: Simon L <szaimen@e.mail.de>
Co-Authored-By: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
19 files changed:
lib/private/Preview/Generator.php
lib/public/Accounts/IAccount.php
lib/public/Accounts/IAccountPropertyCollection.php
lib/public/AppFramework/PublicShareController.php
lib/public/BackgroundJob/IJobList.php
lib/public/Collaboration/AutoComplete/IManager.php
lib/public/Contacts/IManager.php
lib/public/DB/Exception.php
lib/public/DB/QueryBuilder/IQueryBuilder.php
lib/public/DirectEditing/IEditor.php
lib/public/Files.php
lib/public/Files/Cache/ICache.php
lib/public/FullTextSearch/Model/ISearchResult.php
lib/public/HintException.php
lib/public/LDAP/ILDAPProvider.php
lib/public/Share_Backend.php
lib/public/User/Events/UserLoggedInWithCookieEvent.php
lib/public/Util.php
lib/public/WorkflowEngine/IEntityEvent.php

index ed9474fafb2172e66dd7b6ad0641ab953ab05614..d19f5d29bf5af2e1836685d97202595204dc8405 100644 (file)
@@ -446,7 +446,7 @@ class Generator {
                        $path .= '-max';
                }
 
-               $ext = $this->getExtention($mimeType);
+               $ext = $this->getExtension($mimeType);
                $path .= '.' . $ext;
                return $path;
        }
@@ -647,7 +647,7 @@ class Generator {
         * @return null|string
         * @throws \InvalidArgumentException
         */
-       private function getExtention($mimeType) {
+       private function getExtension($mimeType) {
                switch ($mimeType) {
                        case 'image/png':
                                return 'png';
index 190896a54ef9faaa9317962977a888c645733f6d..e024ced5bda29ec17e633891aa23ab851c1b3986 100644 (file)
@@ -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
index 3f42cb1e6b72c827e941b6224e2d4ff1aa582c8c..c4ae5b5abc0febe9749e05c7a86332b0cc83f2eb 100644 (file)
@@ -38,7 +38,7 @@ use JsonSerializable;
  */
 interface IAccountPropertyCollection extends JsonSerializable {
        /**
-        * retuns the collection name
+        * returns the collection name
         *
         * @since 22.0.0
         */
index 706dc0b9ae9fa150f1e80a7b609ffc0e83170473..52acbe841b420834fb667bc1621a9f3ec9bac416 100644 (file)
@@ -36,7 +36,7 @@ use OCP\ISession;
  *
  * Use this for example for a controller that is not to be called via a webbrowser
  * directly. For example a PublicPreviewController. As this is not meant to be
- * called by a user direclty.
+ * called by a user directly.
  *
  * To show an auth page extend the AuthPublicShareController
  *
index 71faefb882562ce1276f2b852a59c451fc8b0459..65e2f5b6250e140bdf569e2fbe61c37d948e2c42 100644 (file)
@@ -52,7 +52,7 @@ interface IJobList {
         * Add a job to the list
         *
         * @param IJob|class-string<IJob> $job
-        * @param mixed $argument The argument to be passed to $job->run() when the job is exectured
+        * @param mixed $argument The argument to be passed to $job->run() when the job is executed
         * @since 7.0.0
         */
        public function add($job, $argument = null): void;
index c4ca499b618e3231196d958df37ee6b79fe6b0fb..320250387d991ee0cb6cf46849e027c8a70636af 100644 (file)
@@ -35,7 +35,7 @@ interface IManager {
        public function registerSorter($className);
 
        /**
-        * @param array $sorters        list of sorter IDs, seperated by "|"
+        * @param array $sorters        list of sorter IDs, separated by "|"
         * @param array $sortArray      array representation of OCP\Collaboration\Collaborators\ISearchResult
         * @param array $context        context info of the search, keys: itemType, itemId
         * @since 13.0.0
index 7aa3d9ce38b40559917369321bd3a55c06738f10..6ca349b95d0caa9216e90e6c57b355d32832e905 100644 (file)
@@ -95,7 +95,7 @@ interface IManager {
         *      - 'limit' - Set a numeric limit for the search results
         *      - 'offset' - Set the offset for the limited search results
         *      - 'enumeration' - (since 23.0.0) Whether user enumeration on system address book is allowed
-        *      - 'fullmatch' - (since 23.0.0) Whether matching on full detail in system addresss book is allowed
+        *      - 'fullmatch' - (since 23.0.0) Whether matching on full detail in system address book is allowed
         *      - 'strict_search' - (since 23.0.0) Whether the search pattern is full string or partial search
         * @psalm-param array{types?: bool, escape_like_param?: bool, limit?: int, offset?: int, enumeration?: bool, fullmatch?: bool, strict_search?: bool} $options
         * @return array an array of contacts which are arrays of key-value-pairs
index 105cbd188d7eb56ee1f259faddcd2e79090ea4ec..f977ffa7396308ed1c4cecf5127767a9e7fd355e 100644 (file)
@@ -110,7 +110,7 @@ class Exception extends BaseException {
        public const REASON_NON_UNIQUE_FIELD_NAME = 10;
 
        /**
-        * A not null contraint was violated
+        * A not null constraint was violated
         *
         * @since 21.0.0
         */
index d677ee214f8d10a7ef777f274cc5940e9c373804..1f5c43079140ad6ecfa62cc63c6db1baf61e3b39 100644 (file)
@@ -620,7 +620,7 @@ interface IQueryBuilder {
         *         ->from('users', 'u')
         *         ->where('u.id = ?');
         *
-        *     // You can optionally programatically build and/or expressions
+        *     // You can optionally programmatically build and/or expressions
         *     $qb = $conn->getQueryBuilder();
         *
         *     $or = $qb->expr()->orx();
index c70b4751e6e61ce2df556d829ba974112574f19b..96d2c31c876cc3285ea90b4b5d42d1f093642281 100644 (file)
@@ -87,7 +87,7 @@ interface IEditor {
         * Return a template response for displaying the editor
         *
         * open can only be called once when the client requests the editor with a one-time-use token
-        * For handling editing and later requests, editors need to impelement their own token handling and take care of invalidation
+        * For handling editing and later requests, editors need to implement their own token handling and take care of invalidation
         *
         * This behavior is similar to the current direct editing implementation in collabora where we generate a one-time token and switch over to the regular wopi token for the actual editing/saving process
         *
index c078f57b2c3692c5d2cb156aeb7a6f1f28635678..e6e63b10b0bbd6eb187a051e4fe57e5402309aec 100644 (file)
@@ -37,13 +37,13 @@ namespace OCP;
 
 /**
  * This class provides access to the internal filesystem abstraction layer. Use
- * this class exlusively if you want to access files
+ * this class exclusively if you want to access files
  * @since 5.0.0
  * @deprecated 14.0.0
  */
 class Files {
        /**
-        * Recusive deletion of folders
+        * Recursive deletion of folders
         * @return bool
         * @since 5.0.0
         * @deprecated 14.0.0
index 37e71f3ac79c37762c57c63256491713be5b351a..1934cc24bd403a4414a2af95587af5f0364b3c2e 100644 (file)
@@ -28,7 +28,7 @@ use OCP\Files\Search\ISearchQuery;
 /**
  * Metadata cache for a storage
  *
- * The cache stores the metadata for all files and folders in a storage and is kept up to date trough the following mechanisms:
+ * The cache stores the metadata for all files and folders in a storage and is kept up to date through the following mechanisms:
  *
  * - Scanner: scans the storage and updates the cache where needed
  * - Watcher: checks for changes made to the filesystem outside of the Nextcloud instance and rescans files and folder when a change is detected
index 60070856264f24a1d3737f1a80ea85e9d6bc58d5..2d78a1e4a894d372563dd6d6938c3695b682e561 100644 (file)
@@ -38,7 +38,7 @@ use OCP\FullTextSearch\IFullTextSearchProvider;
  * search and fill the SearchResult object with results.
  *
  * Then, the object will be passed to the targeted Content Provider that will
- * improve the Search Results with detailed informations.
+ * improve the Search Results with detailed information.
  *
  * Finally, the SearchResult is returned to the original search request.
  *
index b5ee7642b03ee58e0107a940a63c60339884dfa0..ad6eb486d4ba2e1a25f9de5763a1919db993129e 100644 (file)
@@ -67,7 +67,7 @@ class HintException extends \Exception {
 
        /**
         * Returns the hint with the intention to be presented to the end user. If
-        * an empty hint was specified upon instatiation, the message is returned
+        * an empty hint was specified upon instantiation, the message is returned
         * instead.
         *
         * @since 23.0.0
index 8fad3bd2266ea380cb06d23b35d0ce70e99e5559..e37343adbbde41844ba1c1bca9e370d3af920d8b 100644 (file)
@@ -151,7 +151,7 @@ interface ILDAPProvider {
        public function getLDAPEmailField($uid);
 
        /**
-        * Get the LDAP attribute name for the type of association betweeen users and groups
+        * Get the LDAP attribute name for the type of association between users and groups
         * @param string $gid group id
         * @return string the configuration, one of: 'memberUid', 'uniqueMember', 'member', 'gidNumber', ''
         * @throws \Exception if group id was not found in LDAP
index 044ecf9aa28a853055822b9b09c37ded019497a8..16967526ff66b23f7be2faad75ffffd0bd99ceba 100644 (file)
@@ -82,7 +82,7 @@ interface Share_Backend {
        public function formatItems($items, $format, $parameters = null);
 
        /**
-        * Check if a given share type is allowd by the back-end
+        * Check if a given share type is allowed by the back-end
         *
         * @param int $shareType share type
         * @return boolean
index c8ea946a5fb0179075394f40a53649e565c20908..e92c6a05629422b664e7ce278795cc553ffe703e 100644 (file)
@@ -30,7 +30,7 @@ use OCP\EventDispatcher\Event;
 use OCP\IUser;
 
 /**
- * Emitted when a user has been succesfully logged in via remember-me cookies.
+ * Emitted when a user has been successfully logged in via remember-me cookies.
  *
  * @since 18.0.0
  */
index 69eccbbc5f68d7ce49b25674e913aeceb3d32db2..64934c5f3ade6510a1e0b165d581bf575e095faf 100644 (file)
@@ -576,13 +576,13 @@ class Util {
         * Sometimes a string has to be shortened to fit within a certain maximum
         * data length in bytes. substr() you may break multibyte characters,
         * because it operates on single byte level. mb_substr() operates on
-        * characters, so does not ensure that the shortend string satisfies the
+        * characters, so does not ensure that the shortened string satisfies the
         * max length in bytes.
         *
         * For example, json_encode is messing with multibyte characters a lot,
         * replacing them with something along "\u1234".
         *
-        * This function shortens the string with by $accurancy (-5) from
+        * This function shortens the string with by $accuracy (-5) from
         * $dataLength characters, until it fits within $dataLength bytes.
         *
         * @since 23.0.0
index 8faed8b266c116acf37cd8f3584cd834aa5d9ee5..c158edde30fcc75b2670ea695daf6c975633b51b 100644 (file)
@@ -28,7 +28,7 @@ namespace OCP\WorkflowEngine;
 /**
  * Interface IEntityEvent
  *
- * represents an entitiy event that is dispatched via EventDispatcher
+ * represents an entity event that is dispatched via EventDispatcher
  *
  *
  * @since 18.0.0