mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: fix typos (#21089)
This commit is contained in:
parent
9ad84ddc21
commit
f77bb32044
193 changed files with 403 additions and 402 deletions
|
@ -409,7 +409,7 @@ pub fn compress(data []u8, params CompressParams) ![]u8 {
|
|||
}
|
||||
check_zstd(cctx.set_parameter(.zstd_c_compression_level, params.compression_level))!
|
||||
$if !(tinyc && windows) {
|
||||
// TODO: tinyc on windows doesn't support mutiple thread
|
||||
// TODO: tinyc on windows doesn't support multiple thread
|
||||
check_zstd(cctx.set_parameter(.zstd_c_nb_workers, params.nb_threads))!
|
||||
}
|
||||
check_zstd(cctx.set_parameter(.zstd_c_checksum_flag, if params.checksum_flag { 1 } else { 0 }))!
|
||||
|
@ -457,7 +457,7 @@ pub fn new_cctx(params CompressParams) !&ZSTD_CCtx {
|
|||
}
|
||||
check_zstd(cctx.set_parameter(.zstd_c_compression_level, params.compression_level))!
|
||||
$if !(tinyc && windows) {
|
||||
// TODO: tinyc on windows doesn't support mutiple thread
|
||||
// TODO: tinyc on windows doesn't support multiple thread
|
||||
check_zstd(cctx.set_parameter(.zstd_c_nb_workers, params.nb_threads))!
|
||||
}
|
||||
check_zstd(cctx.set_parameter(.zstd_c_checksum_flag, if params.checksum_flag { 1 } else { 0 }))!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue