File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 125
125
/// The converter finds characters that are significant in HTML source and
126
126
/// replaces them with corresponding HTML entities.
127
127
///
128
- /// Custom escape modes can be created using the [HtmlEscapeMode.HtmlEscapeMode ]
128
+ /// Custom escape modes can be created using the [HtmlEscapeMode.new ]
129
129
/// constructor.
130
130
///
131
131
/// Example:
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const HtmlEscape htmlEscape = HtmlEscape();
36
36
/// All modes require escaping of `&` (ampersand) characters, and may
37
37
/// enable escaping of more characters.
38
38
///
39
- /// Custom escape modes can be created using the [HtmlEscapeMode.HtmlEscapeMode ]
39
+ /// Custom escape modes can be created using the [HtmlEscapeMode.new ]
40
40
/// constructor.
41
41
///
42
42
/// Example:
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const String _hexDigits = "0123456789ABCDEF";
26
26
27
27
/// A parsed URI, such as a URL.
28
28
///
29
- /// To create a URI with specific components, use [new Uri] :
29
+ /// To create a URI with specific components, use [Uri.new ] :
30
30
/// ```dart
31
31
/// var httpsUri = Uri(
32
32
/// scheme: 'https',
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class IsolateSpawnException implements Exception {
68
68
/// The `Isolate` object provided by a spawn operation will have the
69
69
/// control port and capabilities needed to control the isolate.
70
70
/// New isolate objects can be created without some of these capabilities
71
- /// if necessary, using the [Isolate.Isolate ] constructor.
71
+ /// if necessary, using the [Isolate.new ] constructor.
72
72
///
73
73
/// An `Isolate` object cannot be sent over a `SendPort` , but the control port
74
74
/// and capabilities can be sent, and can be used to create a new functioning
You can’t perform that action at this time.
0 commit comments