Remove unintended period at end of lines
The integer specifier lines in the output weren’t intended to be followed by a period. This removes the period to make the format consistent with the other formulas in the output.
This commit is contained in:
parent
d3e160222a
commit
6015b225a2
@ -155,7 +155,7 @@ void translate(const char *fileName, std::istream &stream, Context &context)
|
|||||||
<< "(" << predicateDeclaration->name
|
<< "(" << predicateDeclaration->name
|
||||||
<< "/" << output::Number(predicateDeclaration->arity())
|
<< "/" << output::Number(predicateDeclaration->arity())
|
||||||
<< "@" << output::Number(i + 1)
|
<< "@" << output::Number(i + 1)
|
||||||
<< ")." << std::endl;
|
<< ")" << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user