[ci skip] Add missing docs for CI_FTP::changedir()
diff --git a/user_guide_src/source/libraries/ftp.rst b/user_guide_src/source/libraries/ftp.rst
index 1b1a45e..c587869 100644
--- a/user_guide_src/source/libraries/ftp.rst
+++ b/user_guide_src/source/libraries/ftp.rst
@@ -273,6 +273,17 @@
 			// Chmod "bar" to 777
 			$this->ftp->chmod('/public_html/foo/bar/', DIR_WRITE_MODE);
 
+	.. method:: changedir($path[, $suppress_debug = FALSE])
+
+		:param string $path: Directory path
+		:param bool $suppress_debug: Whether to turn off debug messages for this command
+		:returns: bool
+
+		Changes the current working directory to the specified path.
+
+		The ``$suppress_debug`` parameter is useful in case you want to use this method
+		as an ``is_dir()`` alternative for FTP.
+
 	.. method:: close()
 
 		:returns: bool