Skip to content

Commit e1dc63d

Browse files
update logic for x-metatags to use the standard term used by webteam for other docs
1 parent f9d8102 commit e1dc63d

File tree

1 file changed

+1
-1
lines changed
  • compiler-rs/clients_schema_to_openapi/src

1 file changed

+1
-1
lines changed

compiler-rs/clients_schema_to_openapi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ pub fn product_meta_as_extensions(namespace: &str, product_meta: &IndexMap<Strin
194194
let product_str = format!("elasticsearch{additional_namespace}");
195195
let mut product_feature_list: Vec<Value> = Vec::new();
196196
let mut product_feature: Map<String, Value> = Map::new();
197-
product_feature.insert("name".to_string(),Value::String("x-product-feature".to_string()));
197+
product_feature.insert("name".to_string(),Value::String("product_name".to_string()));
198198
product_feature.insert("content".to_string(),Value::String(product_str));
199199
product_feature_list.push(Value::Object(product_feature));
200200
result.insert("x-metaTags".to_string(), Value::Array(product_feature_list));

0 commit comments

Comments
 (0)