Fix a string type.
diff --git a/Source/GTMMIMEDocument.m b/Source/GTMMIMEDocument.m
index a12786b..01c73ff 100644
--- a/Source/GTMMIMEDocument.m
+++ b/Source/GTMMIMEDocument.m
@@ -174,7 +174,7 @@
   // use an easily-readable boundary string
   NSString *const kBaseBoundary = @"END_OF_PART";
 
-  NSMutableString *boundary = [NSMutableString stringWithString:kBaseBoundary];
+  NSString *boundary = kBaseBoundary;
 
   // if the boundary isn't unique, append random numbers, up to 10 attempts;
   // if that's still not unique, use a random number sequence instead,