Skip to content

Commit 8ad39cf

Browse files
committed
Fix javadoc generation
1 parent 7afc055 commit 8ad39cf

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/main/java/ko/carbonel/syntax/grammar/generator/output/TinyRustMIPSCodeGenerator.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@
2525

2626
/**
2727
* Stack Frame Format:
28-
* main| local vars < Base FP points to first local 00, first local var
28+
* <pre>
29+
* main| local vars &lt; Base FP points to first local 00, first local var
2930
* main| [maybe data from expression]
3031
* ...
3132
* call| Old $fp
3233
* call| $ra
3334
* call| self
3435
* call| args
35-
* call| local vars < new FP points to first local var
36+
* call| local vars &lt; new FP points to first local var
3637
* call| [maybe data from expression]
38+
* </pre>
3739
*/
3840
public class TinyRustMIPSCodeGenerator extends MIPSCodeGenerator<TinyRustSymbolTable> {
3941
public static final String METHOD_MAIN = "method_main";

0 commit comments

Comments
 (0)