From 484793059ee17eebed480c2c36e7ff5e86e340ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikl=C3=B3s=20T=C3=B3th?= <tothmiklostibor@gmail.com> Date: Mon, 10 May 2021 10:11:41 +0200 Subject: [PATCH] =?UTF-8?q?fix=20"=C3=BAj=20oszt=C3=A1ly"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plab/javadoc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plab/javadoc.go b/plab/javadoc.go index 9b798b3..eb10b82 100644 --- a/plab/javadoc.go +++ b/plab/javadoc.go @@ -419,7 +419,7 @@ func printClassDoc(c *Class, changed bool) { return } extra := "" - if !changed || c.changed() { + if changed && c.changed() { extra = "\\textit{Új osztály}" } fmt.Printf("\\paragraph{\\texttt{%s \\textcolor{blue}{%s}} %s}\n", c.Modifiers, c.Name, extra) -- GitLab