rename the repo
diff --git a/lib/src/protobuf/field_error.dart b/lib/src/protobuf/field_error.dart
index 29d03bc..e4c9a72 100644
--- a/lib/src/protobuf/field_error.dart
+++ b/lib/src/protobuf/field_error.dart
@@ -51,7 +51,7 @@
     case PbFieldType._SFIXED64_BIT:
       // We always use the full range of the same Dart type.
       // It's up to the caller to treat the Int64 as signed or unsigned.
-      // See: https://github.com/dart-lang/dart-protobuf/issues/44
+      // See: https://github.com/dart-lang/protobuf/issues/44
       if (value is! Int64) return 'not Int64';
       return null;
 
@@ -104,7 +104,7 @@
     case PbFieldType._FIXED64_BIT:
       // We always use the full range of the same Dart type.
       // It's up to the caller to treat the Int64 as signed or unsigned.
-      // See: https://github.com/dart-lang/dart-protobuf/issues/44
+      // See: https://github.com/dart-lang/protobuf/issues/44
       return _checkAnyInt64;
 
     case PbFieldType._ENUM_BIT:
diff --git a/lib/src/protobuf/field_set.dart b/lib/src/protobuf/field_set.dart
index e089108..d45d682 100644
--- a/lib/src/protobuf/field_set.dart
+++ b/lib/src/protobuf/field_set.dart
@@ -449,7 +449,7 @@
   /// recursively merged.
   void _mergeFromMessage(_FieldSet other) {
 
-    // TODO(https://github.com/dart-lang/dart-protobuf/issues/60): Recognize
+    // TODO(https://github.com/dart-lang/protobuf/issues/60): Recognize
     // when [this] and [other] are the same protobuf (e.g. from cloning). In
     // this case, we can merge the non-extension fields without field lookups or
     // validation checks.
@@ -556,6 +556,6 @@
       fi._appendInvalidFields(problems, value, prefix);
     }
     // TODO(skybrian): search extensions as well
-    // https://github.com/dart-lang/dart-protobuf/issues/46
+    // https://github.com/dart-lang/protobuf/issues/46
   }
 }
diff --git a/pubspec.yaml b/pubspec.yaml
index b122a63..cdf025c 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -2,7 +2,7 @@
 version: 0.5.3+1
 author: Dart Team <misc@dartlang.org>
 description: Runtime library for protobuf support.
-homepage: https://github.com/dart-lang/dart-protobuf
+homepage: https://github.com/dart-lang/protobuf
 environment:
   sdk: '>=1.13.0 <2.0.0'
 dependencies:
diff --git a/test/list_test.dart b/test/list_test.dart
index c5acd87..60e6dc1 100755
--- a/test/list_test.dart
+++ b/test/list_test.dart
@@ -189,7 +189,7 @@
 
     // Adding -1 should work because we are storing the bits as-is.
     // (It will be interpreted as a positive number.)
-    // See: https://github.com/dart-lang/dart-protobuf/issues/44
+    // See: https://github.com/dart-lang/protobuf/issues/44
     expect(() {
       list.add(new Int64(-1));
     }, returnsNormally, reason: 'could not add Int64(-1) to a PbList');