Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Unified Diff: examples/dart/netcat/lib/main.dart

Issue 1529423002: Dart: Fix conversion of identifiers to lowerCamelCase. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Comments Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mojo/dart/embedder/io/internet_address_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/dart/netcat/lib/main.dart
diff --git a/examples/dart/netcat/lib/main.dart b/examples/dart/netcat/lib/main.dart
index 2f0e88d89c6965b718bca64b59c52d093ed84a93..5c61810599be60e11cdf32e7b07564bd3f5f9524 100644
--- a/examples/dart/netcat/lib/main.dart
+++ b/examples/dart/netcat/lib/main.dart
@@ -25,7 +25,7 @@ void ignoreFuture(Future f) {
NetAddress makeIPv4NetAddress(List<int> addr, int port) {
var rv = new NetAddress();
- rv.family = NetAddressFamily.ipV4;
+ rv.family = NetAddressFamily.ipv4;
rv.ipv4 = new NetAddressIPv4();
rv.ipv4.addr = new List<int>.from(addr);
rv.ipv4.port = port;
« no previous file with comments | « no previous file | mojo/dart/embedder/io/internet_address_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698