Fix typo; see https://screenshot.googleplex.com/5afwL4iQtHeJKLC

PiperOrigin-RevId: 344198596
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index c096ec9..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-language: dart
-
-addons:
-  chrome: stable
-
-dart:
-  - dev
-
-jobs:
-  include:
-  - script: pub run test
-  - script: pub run test -p chrome
-  - dart_task: dartfmt
-  - dart_task:
-      dartanalyzer: --fatal-infos --fatal-warnings .
-
-# Only building master means that we don't run two builds for each pull request.
-branches:
-  only: [master]
-
-cache:
-  directories:
-    - $HOME/.pub-cache
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 572f9ca..284b31e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,3 @@
-## 0.17.0
-
-* Stable release for null safety.
-
 ## 0.17.0-nullsafety.2
 
 * Update SDK constraints to >=2.12.0-0 <3.0.0 based on beta release guidelines.
diff --git a/lib/message_format.dart b/lib/message_format.dart
index 45b47ef..7b31ac9 100644
--- a/lib/message_format.dart
+++ b/lib/message_format.dart
@@ -76,7 +76,7 @@
 /// produce `"I see Mark and one other person in Athens."` as output.
 ///
 /// Calling `format({'NUM_PEOPLE': 5, 'WHO': 'Mark', 'PLACE': 'Athens'})` would
-/// produce `"I see Mark and one 4 other people in Athens."` as output.
+/// produce `"I see Mark and 4 other people in Athens."` as output.
 /// Notice how the "#" is the value of `NUM_PEOPLE` - 1 (the offset).
 ///
 /// Another important thing to notice is the existence of both `"=1"` and
diff --git a/pubspec.yaml b/pubspec.yaml
index 1f9eeb8..2d3d582 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: intl
-version: 0.17.0
+version: 0.17.0-nullsafety.2
 homepage: https://github.com/dart-lang/intl
 description: >-
   Contains code to deal with internationalized/localized messages, date and
@@ -10,8 +10,8 @@
   sdk: '>=2.12.0-0 <3.0.0'
 
 dependencies:
-  clock: ^1.1.0
-  path: ^1.8.0
+  clock: ^1.1.0-nullsafety.1
+  path: ^1.8.0-nullsafety.1
 
 dev_dependencies:
   ffi: any