We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c865c commit c193effCopy full SHA for c193eff
compiler-rs/compiler-wasm-lib/src/lib.rs
@@ -30,7 +30,7 @@ fn convert0(json: &str, flavor: &str) -> anyhow::Result<String> {
30
let filter: Option<fn(&Option<Availabilities>) -> bool> = match flavor {
31
"all" => None,
32
"stack" => Some(|a| {
33
- // Generate public and private items for Stack
+ // Generate only public items for Stack
34
clients_schema::Flavor::Stack.visibility(a) == Some(Visibility::Public)
35
}),
36
"serverless" => Some(|a| {
0 commit comments