Index: src/conversions-inl.h |
diff --git a/src/conversions-inl.h b/src/conversions-inl.h |
index f1ccb1537714d8f4dab001c5a88649a468d238f2..c05c0644da5eb675c75b6b6617df29fba418cfe9 100644 |
--- a/src/conversions-inl.h |
+++ b/src/conversions-inl.h |
@@ -70,7 +70,7 @@ inline unsigned int FastD2UI(double x) { |
inline float DoubleToFloat32(double x) { |
- // TODO(yanggou): This static_cast is implementation-defined behaviour in C++, |
+ // TODO(yangguo): This static_cast is implementation-defined behaviour in C++, |
// so we may need to do the conversion manually instead to match the spec. |
volatile float f = static_cast<float>(x); |
return f; |