Index: sdk/lib/core/function.dart |
diff --git a/sdk/lib/core/function.dart b/sdk/lib/core/function.dart |
index 9345590100d8e3ab325ddf5b3926768875bd6c22..7ff40e9dac90f7a4f83eed0c4c9e104242eceec3 100644 |
--- a/sdk/lib/core/function.dart |
+++ b/sdk/lib/core/function.dart |
@@ -23,10 +23,7 @@ abstract class Function { |
* |
* Example: |
* ``` |
- * var namedArguments = new Map<Symbol, dynamic>(); |
- * namedArguments[const Symbol("f")] = 4; |
- * namedArguments[const Symbol("g")] = 5; |
- * Function.apply(foo, [1,2,3], namedArguments); |
+ * Function.apply(foo, [1,2,3], {#f: 4, #g: 5}); |
* ``` |
* |
* gives exactly the same result as |