From 52141023436d561cea64bc4f6a8a962107d576ba Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 22 Jul 2015 17:51:02 +0200 Subject: [PATCH] Small fix with respect to simplified Token::get_brief_comments. --- juci/source.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juci/source.cc b/juci/source.cc index 8c6dec0..9e829d1 100644 --- a/juci/source.cc +++ b/juci/source.cc @@ -388,7 +388,7 @@ void Source::ClangViewParse::update_types() { tooltip_buffer->insert_at_cursor("Type: "+token.get_type()); auto brief_comment=token.get_brief_comments(); if(brief_comment!="") - tooltip_buffer->insert_at_cursor("\n\n"+brief_comment+"."); + tooltip_buffer->insert_at_cursor("\n\n"+brief_comment); return tooltip_buffer; };