includes/std: Fixed std::core::set_pattern_comment (#289)

This commit is contained in:
BobSmun
2024-08-21 02:33:18 +08:00
committed by GitHub
parent 26d48df7dd
commit d961271c5d

View File

@@ -159,10 +159,10 @@ namespace auto std::core {
/**
Changes the comment attached to a pattern
@param pattern The pattern to modify
@param name The new comment of the pattern
@param comment The new comment of the pattern
*/
fn set_pattern_comment(ref auto pattern, str comment) {
builtin::std::core::set_pattern_comment(pattern, name);
builtin::std::core::set_pattern_comment(pattern, comment);
};
/**