From e7170f7980256b7dce856b6cde49c92e4be009b5 Mon Sep 17 00:00:00 2001 From: Gary Roumanis Date: Fri, 15 Feb 2019 14:02:27 -0800 Subject: [PATCH 1/2] remove whitespace --- pkgs/sse/pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/sse/pubspec.yaml b/pkgs/sse/pubspec.yaml index 9e0487eb3..a86543f75 100644 --- a/pkgs/sse/pubspec.yaml +++ b/pkgs/sse/pubspec.yaml @@ -1,10 +1,10 @@ -name: sse +name: sse version: 1.0.0 author: Dart Team homepage: https://github.com/dart-lang/sse description: >- Provides client and server functionality for setting up bi-directional - communication through Server Sent Events (SSE) and corresponding POST + communication through Server Sent Events (SSE) and corresponding POST requests. environment: From 313d2f4db131c5df0cb5a792f66f31e8c6a6eee0 Mon Sep 17 00:00:00 2001 From: Gary Roumanis Date: Fri, 15 Feb 2019 14:07:27 -0800 Subject: [PATCH 2/2] fix typo --- pkgs/sse/example/index.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/sse/example/index.dart b/pkgs/sse/example/index.dart index afc1a49cd..0ed75966c 100644 --- a/pkgs/sse/example/index.dart +++ b/pkgs/sse/example/index.dart @@ -9,7 +9,7 @@ void main() { var channel = SseClient('/sseHandler'); channel.stream.listen((s) { - // Listen for messages and send the back. + // Listen for messages and send them back. channel.sink.add(s); }); }