Index: src/mips/full-codegen-mips.cc |
=================================================================== |
--- src/mips/full-codegen-mips.cc (revision 10402) |
+++ src/mips/full-codegen-mips.cc (working copy) |
@@ -125,7 +125,7 @@ |
// function. |
// |
// The live registers are: |
-// o a1: the JS function object being called (ie, ourselves) |
+// o a1: the JS function object being called (i.e. ourselves) |
// o cp: our context |
// o fp: our caller's frame pointer |
// o sp: stack pointer |
@@ -3655,7 +3655,7 @@ |
// One-character separator case. |
__ bind(&one_char_separator); |
- // Replace separator with its ascii character value. |
+ // Replace separator with its ASCII character value. |
__ lbu(separator, FieldMemOperand(separator, SeqAsciiString::kHeaderSize)); |
// Jump into the loop after the code that copies the separator, so the first |
// element is not preceded by a separator. |
@@ -3666,7 +3666,7 @@ |
// result_pos: the position to which we are currently copying characters. |
// element: Current array element. |
// elements_end: Array end. |
- // separator: Single separator ascii char (in lower byte). |
+ // separator: Single separator ASCII char (in lower byte). |
// Copy the separator character to the result. |
__ sb(separator, MemOperand(result_pos)); |