Skip to content

Commit b36890e

Browse files
committed
remove check for other tag
1 parent 2a51ecd commit b36890e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/emmylua_code_analysis/src/compilation/analyzer/doc/type_ref_tags.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ pub fn analyze_see(analyzer: &mut DocAnalyzer, tag: LuaDocTagSee) -> Option<()>
399399
}
400400

401401
pub fn analyze_other(analyzer: &mut DocAnalyzer, other: LuaDocTagOther) -> Option<()> {
402-
let owner = get_owner_id_or_report(analyzer, &other)?;
402+
let owner = get_owner_id(analyzer)?;
403403
let tag_name = other.get_tag_name()?;
404404
let description = if let Some(des) = other.get_description() {
405405
let description = preprocess_description(&des.get_description_text(), None);

0 commit comments

Comments
 (0)