diff options
author | Stefan Weil <sw@weilnetz.de> | 2017-04-08 19:36:30 +0200 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2020-06-06 13:03:00 +0200 |
commit | e8af52001e82c4bc428d5b1a742a65dbc6a7cc21 (patch) | |
tree | bad06805ae82897a22d093982c88a5eb5564f77a /build/integration/features/bootstrap | |
parent | dba76c04bba910c3c6f1dec4f3eba6416ec3378d (diff) | |
download | nextcloud-server-e8af52001e82c4bc428d5b1a742a65dbc6a7cc21.tar.gz nextcloud-server-e8af52001e82c4bc428d5b1a742a65dbc6a7cc21.zip |
build: Fix some typos (most of them found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'build/integration/features/bootstrap')
-rw-r--r-- | build/integration/features/bootstrap/CommandLineContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/CommandLineContext.php b/build/integration/features/bootstrap/CommandLineContext.php index bf999fd2050..263cdf6de5c 100644 --- a/build/integration/features/bootstrap/CommandLineContext.php +++ b/build/integration/features/bootstrap/CommandLineContext.php @@ -95,7 +95,7 @@ class CommandLineContext implements \Behat\Behat\Context\Context { } /** - * @When /^transfering ownership from "([^"]+)" to "([^"]+)"/ + * @When /^transferring ownership from "([^"]+)" to "([^"]+)"/ */ public function transferingOwnership($user1, $user2) { if ($this->runOcc(['files:transfer-ownership', $user1, $user2]) === 0) { @@ -107,7 +107,7 @@ class CommandLineContext implements \Behat\Behat\Context\Context { } /** - * @When /^transfering ownership of path "([^"]+)" from "([^"]+)" to "([^"]+)"/ + * @When /^transferring ownership of path "([^"]+)" from "([^"]+)" to "([^"]+)"/ */ public function transferingOwnershipPath($path, $user1, $user2) { $path = '--path=' . $path; |