wingo pushed a commit to branch lightning
in repository guile.
commit 26c28beeeb87f1917ef93c176e0fd86e36401b24
Author: pcpa <[email protected]>
Date: Sat Feb 7 17:09:22 2015 -0200
Correct typo
---
doc/body.texi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/body.texi b/doc/body.texi
index f37a628..9b8931d 100644
--- a/doc/body.texi
+++ b/doc/body.texi
@@ -703,7 +703,7 @@ save registers in the prolog and reload in the epilog.
main: @rem{! jit entry point}
prolog @rem{! function prolog}
frame 256 @rem{! save all callee save registers and}
- @rem{! reserve at least 256 byte in stack}
+ @rem{! reserve at least 256 bytes in stack}
main_loop:
...
jmpi handler @rem{! jumps to external code}
@@ -724,7 +724,7 @@ handler: @rem{! handler entry point}
prolog @rem{! function prolog}
tramp 256 @rem{! assumes all callee save registers}
@rem{! are saved and there is at least}
- @rem{! 256 byte in stack}
+ @rem{! 256 bytes in stack}
...
jmpi main_loop @rem{! return to the main loop}
@end example