Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
swallez committed Dec 13, 2024
1 parent 41c865c commit c193eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler-rs/compiler-wasm-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fn convert0(json: &str, flavor: &str) -> anyhow::Result<String> {
let filter: Option<fn(&Option<Availabilities>) -> bool> = match flavor {
"all" => None,
"stack" => Some(|a| {
// Generate public and private items for Stack
// Generate only public items for Stack
clients_schema::Flavor::Stack.visibility(a) == Some(Visibility::Public)
}),
"serverless" => Some(|a| {
Expand Down

0 comments on commit c193eff

Please sign in to comment.