Skip to content

Correction of Ternarization.md  #1626

@wei-yuan

Description

@wei-yuan

Hi guys
Thanks for your tutorial
But I believe there might have something missing here in Ternarization.md

Here is another example, taken from the JTL code development. The following code excerpt uses the string s twice.

if (tail.isEmpty())
    return s;
return s + ":" + tail.toString();

to

if (tail.isEmpty())
    return s;
else
    return s + ":" + tail.toString();

Correction file here

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions