FileSystem: Fix qldoc.

This commit is contained in:
Anders Schack-Mulligen
2023-09-26 14:02:38 +02:00
parent 20cbab9e8f
commit cfd08f23a5

View File

@@ -11,11 +11,15 @@ signature module InputSig {
/**
* Gets the absolute path of this container.
*
* Typically `containerparent(result, this)`.
* Typically `folders(this, result) or files(this, result)`.
*/
string getAbsolutePath();
/** Gets the parent container of this container, if any. */
/**
* Gets the parent container of this container, if any.
*
* Typically `containerparent(result, this)`.
*/
ContainerBase getParentContainer();
}