; We have to push buf and format, both in the order they already have on stack.
; To make this somewhat more efficient, we will create space on the stack and
-; the do a copy of the complete block instead of pushing each parameter
+; then do a copy of the complete block instead of pushing each parameter
; separately. Since the size of the arguments passed is the same as the size
; of the fixed arguments, this will allow us to calculate the pointer to the
; fixed size arguments easier (they're just ParamSize bytes away).
; static void out (struct outdesc* d, const char* buf, unsigned count)
; /* Routine used for writing */
; {
-; /* String - be shure to check the size */
+; /* String - be sure to check the size */
; while (count-- && d->ccount < d->uns) {
; ((char*) d->ptr) [d->ccount] = *buf;
; ++buf;