aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/legacy
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-11-24 08:31:38 +0100
committerGitHub <noreply@github.com>2020-11-24 08:31:38 +0100
commitac42f94269090909e458077e69113e9ba3b515e0 (patch)
tree2981757a69d96c35799edd1517fe45760dce37d8 /lib/private/legacy
parent14b563fe43af005a9aa48fc3df19699c73aed8d2 (diff)
parentf4c1512bb762152404ed478a94d1789ab86c5187 (diff)
downloadnextcloud-server-ac42f94269090909e458077e69113e9ba3b515e0.tar.gz
nextcloud-server-ac42f94269090909e458077e69113e9ba3b515e0.zip
Merge pull request #24320 from nextcloud/typo/noid/fix-typo-in-deprecated
Fix typo in @deprecated PHPDoc tag
Diffstat (limited to 'lib/private/legacy')
-rw-r--r--lib/private/legacy/OC_DB.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/legacy/OC_DB.php b/lib/private/legacy/OC_DB.php
index 0853661c090..b92fd5e8112 100644
--- a/lib/private/legacy/OC_DB.php
+++ b/lib/private/legacy/OC_DB.php
@@ -55,7 +55,7 @@ class OC_DB {
* @param bool|null $isManipulation
* @throws \OC\DatabaseException
* @return OC_DB_StatementWrapper prepared SQL query
- * @depreacted 21.0.0 Please use \OCP\IDBConnection::getQueryBuilder() instead
+ * @deprecated 21.0.0 Please use \OCP\IDBConnection::getQueryBuilder() instead
*
* SQL query via Doctrine prepare(), needs to be execute()'d!
*/
@@ -117,7 +117,7 @@ class OC_DB {
* @param array $parameters
* @return OC_DB_StatementWrapper
* @throws \OC\DatabaseException
- * @depreacted 21.0.0 Please use \OCP\IDBConnection::getQueryBuilder() instead
+ * @deprecated 21.0.0 Please use \OCP\IDBConnection::getQueryBuilder() instead
*/
public static function executeAudited($stmt, array $parameters = []) {
if (is_string($stmt)) {