Skip to content

Commit 153424a

Browse files
committed
indefiniteArticle
1 parent 5cf7ec7 commit 153424a

File tree

8 files changed

+251
-239
lines changed

8 files changed

+251
-239
lines changed

lib/src/dom/css_masking.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import 'svg.dart';
2020
/// elements, as well as methods to manipulate them.
2121
extension type SVGClipPathElement._(JSObject _)
2222
implements SVGElement, JSObject {
23-
/// Creates a(n) [SVGClipPathElement] using the tag 'clipPath'.
23+
/// Creates an [SVGClipPathElement] using the tag 'clipPath'.
2424
SVGClipPathElement()
2525
: _ = document.createElementNS(
2626
'http://www.w3.org/2000/svg',
@@ -34,7 +34,7 @@ extension type SVGClipPathElement._(JSObject _)
3434
/// The **`SVGMaskElement`** interface provides access to the properties of
3535
/// elements, as well as methods to manipulate them.
3636
extension type SVGMaskElement._(JSObject _) implements SVGElement, JSObject {
37-
/// Creates a(n) [SVGMaskElement] using the tag 'mask'.
37+
/// Creates an [SVGMaskElement] using the tag 'mask'.
3838
SVGMaskElement()
3939
: _ = document.createElementNS(
4040
'http://www.w3.org/2000/svg',

lib/src/dom/filter_effects.dart

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import 'svg.dart';
1919
/// The **`SVGFilterElement`** interface provides access to the properties of
2020
/// elements, as well as methods to manipulate them.
2121
extension type SVGFilterElement._(JSObject _) implements SVGElement, JSObject {
22-
/// Creates a(n) [SVGFilterElement] using the tag 'filter'.
22+
/// Creates an [SVGFilterElement] using the tag 'filter'.
2323
SVGFilterElement()
2424
: _ = document.createElementNS(
2525
'http://www.w3.org/2000/svg',
@@ -37,7 +37,7 @@ extension type SVGFilterElement._(JSObject _) implements SVGElement, JSObject {
3737

3838
/// The **`SVGFEBlendElement`** interface corresponds to the element.
3939
extension type SVGFEBlendElement._(JSObject _) implements SVGElement, JSObject {
40-
/// Creates a(n) [SVGFEBlendElement] using the tag 'feBlend'.
40+
/// Creates an [SVGFEBlendElement] using the tag 'feBlend'.
4141
SVGFEBlendElement()
4242
: _ = document.createElementNS(
4343
'http://www.w3.org/2000/svg',
@@ -74,7 +74,7 @@ extension type SVGFEBlendElement._(JSObject _) implements SVGElement, JSObject {
7474
/// The **`SVGFEColorMatrixElement`** interface corresponds to the element.
7575
extension type SVGFEColorMatrixElement._(JSObject _)
7676
implements SVGElement, JSObject {
77-
/// Creates a(n) [SVGFEColorMatrixElement] using the tag 'feColorMatrix'.
77+
/// Creates an [SVGFEColorMatrixElement] using the tag 'feColorMatrix'.
7878
SVGFEColorMatrixElement()
7979
: _ = document.createElementNS(
8080
'http://www.w3.org/2000/svg',
@@ -100,7 +100,7 @@ extension type SVGFEColorMatrixElement._(JSObject _)
100100
/// element.
101101
extension type SVGFEComponentTransferElement._(JSObject _)
102102
implements SVGElement, JSObject {
103-
/// Creates a(n) [SVGFEComponentTransferElement] using the tag
103+
/// Creates an [SVGFEComponentTransferElement] using the tag
104104
/// 'feComponentTransfer'.
105105
SVGFEComponentTransferElement()
106106
: _ = document.createElementNS(
@@ -138,7 +138,7 @@ extension type SVGComponentTransferFunctionElement._(JSObject _)
138138
/// The **`SVGFEFuncRElement`** interface corresponds to the element.
139139
extension type SVGFEFuncRElement._(JSObject _)
140140
implements SVGComponentTransferFunctionElement, JSObject {
141-
/// Creates a(n) [SVGFEFuncRElement] using the tag 'feFuncR'.
141+
/// Creates an [SVGFEFuncRElement] using the tag 'feFuncR'.
142142
SVGFEFuncRElement()
143143
: _ = document.createElementNS(
144144
'http://www.w3.org/2000/svg',
@@ -149,7 +149,7 @@ extension type SVGFEFuncRElement._(JSObject _)
149149
/// The **`SVGFEFuncGElement`** interface corresponds to the element.
150150
extension type SVGFEFuncGElement._(JSObject _)
151151
implements SVGComponentTransferFunctionElement, JSObject {
152-
/// Creates a(n) [SVGFEFuncGElement] using the tag 'feFuncG'.
152+
/// Creates an [SVGFEFuncGElement] using the tag 'feFuncG'.
153153
SVGFEFuncGElement()
154154
: _ = document.createElementNS(
155155
'http://www.w3.org/2000/svg',
@@ -160,7 +160,7 @@ extension type SVGFEFuncGElement._(JSObject _)
160160
/// The **`SVGFEFuncBElement`** interface corresponds to the element.
161161
extension type SVGFEFuncBElement._(JSObject _)
162162
implements SVGComponentTransferFunctionElement, JSObject {
163-
/// Creates a(n) [SVGFEFuncBElement] using the tag 'feFuncB'.
163+
/// Creates an [SVGFEFuncBElement] using the tag 'feFuncB'.
164164
SVGFEFuncBElement()
165165
: _ = document.createElementNS(
166166
'http://www.w3.org/2000/svg',
@@ -171,7 +171,7 @@ extension type SVGFEFuncBElement._(JSObject _)
171171
/// The **`SVGFEFuncAElement`** interface corresponds to the element.
172172
extension type SVGFEFuncAElement._(JSObject _)
173173
implements SVGComponentTransferFunctionElement, JSObject {
174-
/// Creates a(n) [SVGFEFuncAElement] using the tag 'feFuncA'.
174+
/// Creates an [SVGFEFuncAElement] using the tag 'feFuncA'.
175175
SVGFEFuncAElement()
176176
: _ = document.createElementNS(
177177
'http://www.w3.org/2000/svg',
@@ -182,7 +182,7 @@ extension type SVGFEFuncAElement._(JSObject _)
182182
/// The **`SVGFECompositeElement`** interface corresponds to the element.
183183
extension type SVGFECompositeElement._(JSObject _)
184184
implements SVGElement, JSObject {
185-
/// Creates a(n) [SVGFECompositeElement] using the tag 'feComposite'.
185+
/// Creates an [SVGFECompositeElement] using the tag 'feComposite'.
186186
SVGFECompositeElement()
187187
: _ = document.createElementNS(
188188
'http://www.w3.org/2000/svg',
@@ -213,8 +213,7 @@ extension type SVGFECompositeElement._(JSObject _)
213213
/// The **`SVGFEConvolveMatrixElement`** interface corresponds to the element.
214214
extension type SVGFEConvolveMatrixElement._(JSObject _)
215215
implements SVGElement, JSObject {
216-
/// Creates a(n) [SVGFEConvolveMatrixElement] using the tag
217-
/// 'feConvolveMatrix'.
216+
/// Creates an [SVGFEConvolveMatrixElement] using the tag 'feConvolveMatrix'.
218217
SVGFEConvolveMatrixElement()
219218
: _ = document.createElementNS(
220219
'http://www.w3.org/2000/svg',
@@ -247,7 +246,7 @@ extension type SVGFEConvolveMatrixElement._(JSObject _)
247246
/// The **`SVGFEDiffuseLightingElement`** interface corresponds to the element.
248247
extension type SVGFEDiffuseLightingElement._(JSObject _)
249248
implements SVGElement, JSObject {
250-
/// Creates a(n) [SVGFEDiffuseLightingElement] using the tag
249+
/// Creates an [SVGFEDiffuseLightingElement] using the tag
251250
/// 'feDiffuseLighting'.
252251
SVGFEDiffuseLightingElement()
253252
: _ = document.createElementNS(
@@ -270,7 +269,7 @@ extension type SVGFEDiffuseLightingElement._(JSObject _)
270269
/// The **`SVGFEDistantLightElement`** interface corresponds to the element.
271270
extension type SVGFEDistantLightElement._(JSObject _)
272271
implements SVGElement, JSObject {
273-
/// Creates a(n) [SVGFEDistantLightElement] using the tag 'feDistantLight'.
272+
/// Creates an [SVGFEDistantLightElement] using the tag 'feDistantLight'.
274273
SVGFEDistantLightElement()
275274
: _ = document.createElementNS(
276275
'http://www.w3.org/2000/svg',
@@ -284,7 +283,7 @@ extension type SVGFEDistantLightElement._(JSObject _)
284283
/// The **`SVGFEPointLightElement`** interface corresponds to the element.
285284
extension type SVGFEPointLightElement._(JSObject _)
286285
implements SVGElement, JSObject {
287-
/// Creates a(n) [SVGFEPointLightElement] using the tag 'fePointLight'.
286+
/// Creates an [SVGFEPointLightElement] using the tag 'fePointLight'.
288287
SVGFEPointLightElement()
289288
: _ = document.createElementNS(
290289
'http://www.w3.org/2000/svg',
@@ -299,7 +298,7 @@ extension type SVGFEPointLightElement._(JSObject _)
299298
/// The **`SVGFESpotLightElement`** interface corresponds to the element.
300299
extension type SVGFESpotLightElement._(JSObject _)
301300
implements SVGElement, JSObject {
302-
/// Creates a(n) [SVGFESpotLightElement] using the tag 'feSpotLight'.
301+
/// Creates an [SVGFESpotLightElement] using the tag 'feSpotLight'.
303302
SVGFESpotLightElement()
304303
: _ = document.createElementNS(
305304
'http://www.w3.org/2000/svg',
@@ -319,7 +318,7 @@ extension type SVGFESpotLightElement._(JSObject _)
319318
/// The **`SVGFEDisplacementMapElement`** interface corresponds to the element.
320319
extension type SVGFEDisplacementMapElement._(JSObject _)
321320
implements SVGElement, JSObject {
322-
/// Creates a(n) [SVGFEDisplacementMapElement] using the tag
321+
/// Creates an [SVGFEDisplacementMapElement] using the tag
323322
/// 'feDisplacementMap'.
324323
SVGFEDisplacementMapElement()
325324
: _ = document.createElementNS(
@@ -347,7 +346,7 @@ extension type SVGFEDisplacementMapElement._(JSObject _)
347346
/// The **`SVGFEDropShadowElement`** interface corresponds to the element.
348347
extension type SVGFEDropShadowElement._(JSObject _)
349348
implements SVGElement, JSObject {
350-
/// Creates a(n) [SVGFEDropShadowElement] using the tag 'feDropShadow'.
349+
/// Creates an [SVGFEDropShadowElement] using the tag 'feDropShadow'.
351350
SVGFEDropShadowElement()
352351
: _ = document.createElementNS(
353352
'http://www.w3.org/2000/svg',
@@ -372,7 +371,7 @@ extension type SVGFEDropShadowElement._(JSObject _)
372371

373372
/// The **`SVGFEFloodElement`** interface corresponds to the element.
374373
extension type SVGFEFloodElement._(JSObject _) implements SVGElement, JSObject {
375-
/// Creates a(n) [SVGFEFloodElement] using the tag 'feFlood'.
374+
/// Creates an [SVGFEFloodElement] using the tag 'feFlood'.
376375
SVGFEFloodElement()
377376
: _ = document.createElementNS(
378377
'http://www.w3.org/2000/svg',
@@ -389,7 +388,7 @@ extension type SVGFEFloodElement._(JSObject _) implements SVGElement, JSObject {
389388
/// The **`SVGFEGaussianBlurElement`** interface corresponds to the element.
390389
extension type SVGFEGaussianBlurElement._(JSObject _)
391390
implements SVGElement, JSObject {
392-
/// Creates a(n) [SVGFEGaussianBlurElement] using the tag 'feGaussianBlur'.
391+
/// Creates an [SVGFEGaussianBlurElement] using the tag 'feGaussianBlur'.
393392
SVGFEGaussianBlurElement()
394393
: _ = document.createElementNS(
395394
'http://www.w3.org/2000/svg',
@@ -417,7 +416,7 @@ extension type SVGFEGaussianBlurElement._(JSObject _)
417416

418417
/// The **`SVGFEImageElement`** interface corresponds to the element.
419418
extension type SVGFEImageElement._(JSObject _) implements SVGElement, JSObject {
420-
/// Creates a(n) [SVGFEImageElement] using the tag 'feImage'.
419+
/// Creates an [SVGFEImageElement] using the tag 'feImage'.
421420
SVGFEImageElement()
422421
: _ = document.createElementNS(
423422
'http://www.w3.org/2000/svg',
@@ -436,7 +435,7 @@ extension type SVGFEImageElement._(JSObject _) implements SVGElement, JSObject {
436435

437436
/// The **`SVGFEMergeElement`** interface corresponds to the element.
438437
extension type SVGFEMergeElement._(JSObject _) implements SVGElement, JSObject {
439-
/// Creates a(n) [SVGFEMergeElement] using the tag 'feMerge'.
438+
/// Creates an [SVGFEMergeElement] using the tag 'feMerge'.
440439
SVGFEMergeElement()
441440
: _ = document.createElementNS(
442441
'http://www.w3.org/2000/svg',
@@ -453,7 +452,7 @@ extension type SVGFEMergeElement._(JSObject _) implements SVGElement, JSObject {
453452
/// The **`SVGFEMergeNodeElement`** interface corresponds to the element.
454453
extension type SVGFEMergeNodeElement._(JSObject _)
455454
implements SVGElement, JSObject {
456-
/// Creates a(n) [SVGFEMergeNodeElement] using the tag 'feMergeNode'.
455+
/// Creates an [SVGFEMergeNodeElement] using the tag 'feMergeNode'.
457456
SVGFEMergeNodeElement()
458457
: _ = document.createElementNS(
459458
'http://www.w3.org/2000/svg',
@@ -466,7 +465,7 @@ extension type SVGFEMergeNodeElement._(JSObject _)
466465
/// The **`SVGFEMorphologyElement`** interface corresponds to the element.
467466
extension type SVGFEMorphologyElement._(JSObject _)
468467
implements SVGElement, JSObject {
469-
/// Creates a(n) [SVGFEMorphologyElement] using the tag 'feMorphology'.
468+
/// Creates an [SVGFEMorphologyElement] using the tag 'feMorphology'.
470469
SVGFEMorphologyElement()
471470
: _ = document.createElementNS(
472471
'http://www.w3.org/2000/svg',
@@ -490,7 +489,7 @@ extension type SVGFEMorphologyElement._(JSObject _)
490489
/// The **`SVGFEOffsetElement`** interface corresponds to the element.
491490
extension type SVGFEOffsetElement._(JSObject _)
492491
implements SVGElement, JSObject {
493-
/// Creates a(n) [SVGFEOffsetElement] using the tag 'feOffset'.
492+
/// Creates an [SVGFEOffsetElement] using the tag 'feOffset'.
494493
SVGFEOffsetElement()
495494
: _ = document.createElementNS(
496495
'http://www.w3.org/2000/svg',
@@ -511,7 +510,7 @@ extension type SVGFEOffsetElement._(JSObject _)
511510
/// element.
512511
extension type SVGFESpecularLightingElement._(JSObject _)
513512
implements SVGElement, JSObject {
514-
/// Creates a(n) [SVGFESpecularLightingElement] using the tag
513+
/// Creates an [SVGFESpecularLightingElement] using the tag
515514
/// 'feSpecularLighting'.
516515
SVGFESpecularLightingElement()
517516
: _ = document.createElementNS(
@@ -534,7 +533,7 @@ extension type SVGFESpecularLightingElement._(JSObject _)
534533

535534
/// The **`SVGFETileElement`** interface corresponds to the element.
536535
extension type SVGFETileElement._(JSObject _) implements SVGElement, JSObject {
537-
/// Creates a(n) [SVGFETileElement] using the tag 'feTile'.
536+
/// Creates an [SVGFETileElement] using the tag 'feTile'.
538537
SVGFETileElement()
539538
: _ = document.createElementNS(
540539
'http://www.w3.org/2000/svg',
@@ -552,7 +551,7 @@ extension type SVGFETileElement._(JSObject _) implements SVGElement, JSObject {
552551
/// The **`SVGFETurbulenceElement`** interface corresponds to the element.
553552
extension type SVGFETurbulenceElement._(JSObject _)
554553
implements SVGElement, JSObject {
555-
/// Creates a(n) [SVGFETurbulenceElement] using the tag 'feTurbulence'.
554+
/// Creates an [SVGFETurbulenceElement] using the tag 'feTurbulence'.
556555
SVGFETurbulenceElement()
557556
: _ = document.createElementNS(
558557
'http://www.w3.org/2000/svg',

0 commit comments

Comments
 (0)