Skip to content

Commit

Permalink
chore: comment.
Browse files Browse the repository at this point in the history
yassun7010 committed Jan 18, 2025

Verified

This commit was signed with the committer’s verified signature.
rockerBOO Dave Lage
1 parent b9827bd commit de2d540
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/schema-store/src/value_type.rs
Original file line number Diff line number Diff line change
@@ -78,7 +78,10 @@ impl ValueType {
impl std::fmt::Display for ValueType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
ValueType::Null => write!(f, "Null"),
ValueType::Null => {
// NOTE: If this representation appears in the Hover of the Language Server, it is a bug.
write!(f, "Null")
}
ValueType::Boolean => write!(f, "Boolean"),
ValueType::Integer => write!(f, "Integer"),
ValueType::Float => write!(f, "Float"),

0 comments on commit de2d540

Please sign in to comment.