Added pre tags to DecompInterface example

This commit is contained in:
astrelsky 2019-12-18 12:55:20 -05:00
parent 9ad7c6843f
commit 6211f9e482
No known key found for this signature in database
GPG key ID: FA88FA97D6877C37

View file

@ -44,7 +44,7 @@ import ghidra.xml.XmlPullParser;
* to it, and if the underlying decompiler process crashes,
* it automatically respawns the process and reinitializes
* it the next time it is needed. The basic usage pattern
* is as follows
* is as follows<pre>
*
* // Instantiate the interface
* DecompInterface ifc = new DecompInterface();
@ -76,7 +76,7 @@ import ghidra.xml.XmlPullParser;
* HighFunction hfunc = res.getHighFunction();
* ...
*
*
* </pre>
*/
public class DecompInterface {