From c756dd4fea7627232e92bb38c13db11b0fc3304b Mon Sep 17 00:00:00 2001 From: Hugo Martins Date: Sun, 29 Oct 2017 21:27:43 +0000 Subject: [PATCH] Code Comment Correction Fixes #329. This correction fixes a comment mistake because it was copy pasted from the above section. --- developer_manual/app/filesystem.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app/filesystem.rst b/developer_manual/app/filesystem.rst index cec2c6138..5ad6edcec 100644 --- a/developer_manual/app/filesystem.rst +++ b/developer_manual/app/filesystem.rst @@ -96,7 +96,7 @@ Files and folders can also be accessed by id, by calling the **getById** method } public function getContent($id) { - // check if file exists and write to it if possible + // check if file exists and read from it if possible try { $file = $this->storage->getById($id); if($file instanceof \OCP\Files\File) {