Unverified Commit 8c5a1ea7 authored by Kevin Moore's avatar Kevin Moore Committed by GitHub

tool/web: tiniest tweak to wasm help content (#126284)

Missing "tick"
parent 8ceec452
...@@ -200,7 +200,7 @@ enum WasmOptLevel implements CliEnum { ...@@ -200,7 +200,7 @@ enum WasmOptLevel implements CliEnum {
@override @override
String get helpText => switch(this) { String get helpText => switch(this) {
WasmOptLevel.none => 'wasm-opt is not run. Fastest build; bigger, slower output.', WasmOptLevel.none => 'wasm-opt is not run. Fastest build; bigger, slower output.',
WasmOptLevel.debug => 'Similar to `${WasmOptLevel.full.name}, but member names are preserved. Debugging is easier, but size is a bit bigger.', WasmOptLevel.debug => 'Similar to `${WasmOptLevel.full.name}`, but member names are preserved. Debugging is easier, but size is a bit bigger.',
WasmOptLevel.full => 'wasm-opt is run. Build time is slower, but output is smaller and faster.', WasmOptLevel.full => 'wasm-opt is run. Build time is slower, but output is smaller and faster.',
}; };
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment