Browse Source

Fix quotation marks

Adam 8 năm trước cách đây
mục cha
commit
2b6db00de1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/google/protobuf/compiler/js/js_generator.cc

+ 1 - 1
src/google/protobuf/compiler/js/js_generator.cc

@@ -193,7 +193,7 @@ string ModuleAlias(const string& filename) {
   string basename = StripProto(filename);
   StripString(&basename, "-", '$');
   StripString(&basename, "/", '_');
-  StripString(&basename, “.”, '_');
+  StripString(&basename, ".", '_');
   return basename + "_pb";
 }