Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class Config extends ConfigBase {

@ConfField(description = {"用户自定义配置文件的路径,用于存放 fe_custom.conf。该文件中的配置会覆盖 fe.conf 中的配置",
@ConfField(description = {"用户自定义配置文件的路径,用于h存放 fe_custom.conf。该文件中的配置会覆盖 fe.conf 中的配置",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stray character in configuration description category Readability

Tell me more
What is the issue?

There is a stray letter 'h' in the Chinese description that affects readability.

Why this matters

Typos in configuration descriptions can cause confusion for users and maintainers trying to understand the purpose of the setting.

Suggested change ∙ Feature Preview

@ConfField(description = {"用户自定义配置文件的路径,用于存放 fe_custom.conf。该文件中的配置会覆盖 fe.conf 中的配置",

Provide feedback to improve future suggestions

Nice Catch Incorrect Not in Scope Not in coding standard Other

💬 Looking for more details? Reply to this comment to chat with Korbit.

"The path of the user-defined configuration file, used to store fe_custom.conf. "
+ "The configuration in this file will override the configuration in fe.conf"})
public static String custom_config_dir = EnvUtils.getDorisHome() + "/conf";
Expand Down
Loading