-
-
Notifications
You must be signed in to change notification settings - Fork 384
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
In Something.zig
:
//! top level comment
/// inner comment
a: i32
In main.zig
:
const Something = @import("Something.zig");
pub fn main() void {
const some = Something { .a = 2 }; // Something has no documentation
some.a; // Has top level documentation and inner documentation
}
Oddly enough, the hover info over some.a
includes the top level comment and the inner comment. The expected output should be "inner comment" for a
and "top level comment" for Something
.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working