Merge pull request #764 from crazywhalecc/docs

remove incorrect space after --enable-yac
This commit is contained in:
Marc 2025-06-12 14:21:02 +07:00 committed by GitHub
commit 56cd6711ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,6 +21,6 @@ class yac extends Extension
public function getUnixConfigureArg(bool $shared = false): string
{
return '--enable-yac ' . ($shared ? '=shared' : '') . ' --enable-igbinary --enable-json --with-system-fastlz';
return '--enable-yac' . ($shared ? '=shared' : '') . ' --enable-igbinary --enable-json --with-system-fastlz';
}
}