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

Unified Diff: sdk/lib/mirrors/mirrors.dart

Issue 1184623003: Fix some markup in the mirrors docs. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 months 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/mirrors/mirrors.dart
diff --git a/sdk/lib/mirrors/mirrors.dart b/sdk/lib/mirrors/mirrors.dart
index 020e7315a7877bd74dc897c57c245a7a76fa00e3..d0f8379bd9537abdd6fba6492c71571712bd2ce5 100644
--- a/sdk/lib/mirrors/mirrors.dart
+++ b/sdk/lib/mirrors/mirrors.dart
@@ -371,7 +371,7 @@ abstract class ObjectMirror implements Mirror {
* of *o* (if *o* is a class or library) or the private members of the
* class of *o* (otherwise).
* If the invocation returns a result *r*, this method returns
- * the result of calling [reflect](*r*).
+ * the result of calling [reflect]\(*r*\).
* If the invocation causes a compilation error
* the effect is the same as if a non-reflective compilation error
* had been encountered.
@@ -412,7 +412,7 @@ abstract class ObjectMirror implements Mirror {
* mirror on a closure corresponding to that method.
*
* If the invocation returns a result *r*, this method returns
- * the result of calling [reflect](*r*).
+ * the result of calling [reflect]\(*r*\).
* If the invocation causes a compilation error
* the effect is the same as if a non-reflective compilation error
* had been encountered.
@@ -437,7 +437,7 @@ abstract class ObjectMirror implements Mirror {
* of *o* (if *o* is a class or library) or the private members of the
* class of *o* (otherwise).
* If the invocation returns a result *r*, this method returns
- * the result of calling [reflect]([value]).
+ * the result of calling [reflect]\([value]\).
* If the invocation causes a compilation error
* the effect is the same as if a non-reflective compilation error
* had been encountered.
@@ -505,7 +505,7 @@ abstract class InstanceMirror implements ObjectMirror {
* Equivalent to
*
* if (invocation.isGetter) {
- * return this.getField(invocation.memberName).reflectee;
+ * return this.getField(invocation.memberName).reflectee;
* } else if (invocation.isSetter) {
* return this.setField(invocation.memberName,
* invocation.positionArguments[0]).reflectee;
@@ -556,7 +556,7 @@ abstract class ClosureMirror implements InstanceMirror {
* Then this method will perform the method invocation
* *f(a1, ..., an, k1: v1, ..., km: vm)*
* If the invocation returns a result *r*, this method returns
- * the result of calling [reflect](*r*).
+ * the result of calling [reflect]\(*r*\).
* If the invocation causes a compilation error
* the effect is the same as if a non-reflective compilation error
* had been encountered.
@@ -837,7 +837,7 @@ abstract class ClassMirror implements TypeMirror, ObjectMirror {
* of *c*.
* In either case:
* If the expression evaluates to a result *r*, this method returns
- * the result of calling [reflect](*r*).
+ * the result of calling [reflect]\(*r*\).
* If evaluating the expression causes a compilation error
* the effect is the same as if a non-reflective compilation error
* had been encountered.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698