Skip to content

Commit

Permalink
fix doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kkent030315 committed Dec 27, 2023
1 parent 3c151af commit 6c7e384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ mod kw {
// `less_than_original` is a keyword that indicates that the file should be compressed only if the compressed size is larger than the original size.
syn::custom_keyword!(less_than_original);
// `compression_ratio_more_than` is a keyword that indicates that the file should be compressed only if the compression ratio is less than the given threshold.
// For example, `compression_ratio_more_than 10` means that the file should be compressed only if the compressed size is less than 10% of the original size.
// For example, `compression_ratio_more_than 10%` means that the file should be compressed only if the compressed size is less than 10% of the original size.
syn::custom_keyword!(compression_ratio_more_than);
}

Expand Down

0 comments on commit 6c7e384

Please sign in to comment.