diff --git a/src/plugins/sfdisk/sfdiskbackend.cpp b/src/plugins/sfdisk/sfdiskbackend.cpp index 3a859fd..1e05985 100644 --- a/src/plugins/sfdisk/sfdiskbackend.cpp +++ b/src/plugins/sfdisk/sfdiskbackend.cpp @@ -471,7 +471,7 @@ FileSystem::Type SfdiskBackend::detectFileSystem(const QString& partitionPath) rval = runDetectFileSystemCommand(udevCommand, typeRegExp, versionRegExp, name); - // Fallback to blkid. blkid has slightly worse detection but it works on whole block device filesystems. + // Fallback to blkid which has slightly worse detection but it works on whole block device filesystems. if (rval == FileSystem::Type::Unknown) { ExternalCommand blkidCommand(QStringLiteral("blkid"), { partitionPath }); typeRegExp = QStringLiteral("TYPE=\"(\\w+)\"");