Skip to content

Commit c193eff

Browse files
committed
Fix comment
1 parent 41c865c commit c193eff

File tree

1 file changed

+1
-1
lines changed
  • compiler-rs/compiler-wasm-lib/src

1 file changed

+1
-1
lines changed

compiler-rs/compiler-wasm-lib/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fn convert0(json: &str, flavor: &str) -> anyhow::Result<String> {
3030
let filter: Option<fn(&Option<Availabilities>) -> bool> = match flavor {
3131
"all" => None,
3232
"stack" => Some(|a| {
33-
// Generate public and private items for Stack
33+
// Generate only public items for Stack
3434
clients_schema::Flavor::Stack.visibility(a) == Some(Visibility::Public)
3535
}),
3636
"serverless" => Some(|a| {

0 commit comments

Comments
 (0)