1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fmt: fix formatting of fn with argument comments (#19038)

This commit is contained in:
yuyi 2023-08-02 15:40:09 +08:00 committed by GitHub
parent ecca3b155e
commit 43800a05e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,9 @@
fn main() {
filtered_links := text_processing.filter_links(links, /* unwanted_domains = */ [
'www.kickstarter.com',
'www.pepper.pl',
'tenor.com',
'www.wykop.pl',
'giphy.com',
])
}