FilePath: fix documentation

Change-Id: Icd2ea0842279ac5ca9225b760aa7634b8db3e06d
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tim Jenssen
2023-01-27 17:58:57 +01:00
parent b8d0828d37
commit cc6c9e4b5e

View File

@@ -978,13 +978,13 @@ FilePath FilePath::relativeChildPath(const FilePath &parent) const
return res;
}
/// \returns the relativePath of FilePath from a given \a anchor.
/// \returns the relative path of FilePath from a given \a anchor.
/// Both, FilePath and anchor may be files or directories.
/// Example usage:
///
/// \code
/// FilePath filePath("/foo/b/ar/file.txt");
/// FilePath relativePath = filePath.relativePath("/foo/c");
/// FilePath relativePath = filePath.relativePathFrom("/foo/c");
/// qDebug() << relativePath
/// \endcode
///