mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 03:55:24 +00:00
UserspaceEmulator: Avoid special character in pseudo-identifier
In the generated HTML code, '#' gets interpreted as the beginning of a shell comment, which throws the syntax highlighting off. Regardless, spelling out the meaning of the '#' might make it more readable.
This commit is contained in:
parent
ea9f2f80a1
commit
70c7861c33
Notes:
sideshowbarker
2024-07-18 01:38:31 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/70c7861c33c Pull-request: https://github.com/SerenityOS/serenity/pull/10655 Reviewed-by: https://github.com/linusg
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ int main(int argc, char** argv, char** env)
|
|||
parser.add_option(g_report_to_debug, "Write reports to the debug log", "report-to-debug", 0);
|
||||
parser.add_option(pause_on_startup, "Pause on startup", "pause", 'p');
|
||||
parser.add_option(dump_profile, "Generate a ProfileViewer-compatible profile", "profile", 0);
|
||||
parser.add_option(profile_instruction_interval, "Set the profile instruction capture interval, 128 by default", "profile-interval", 'i', "#instructions");
|
||||
parser.add_option(profile_instruction_interval, "Set the profile instruction capture interval, 128 by default", "profile-interval", 'i', "num_instructions");
|
||||
parser.add_option(profile_dump_path, "File path for profile dump", "profile-file", 0, "path");
|
||||
parser.add_option(enable_roi_mode, "Enable Region-of-Interest mode for profiling", "roi", 0);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue