Skip to content

Commit a716492

Browse files
committed
improves documentation
1 parent 31aba56 commit a716492

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

docs/api.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ Any value could be a float or a string that contains a float</p>
5454
<dd><p>Parse a string formatted as matrix(a,b,c,d,e,f)</p>
5555
</dd>
5656
<dt><a href="#fromTransformAttribute">fromTransformAttribute(transformString)</a> ⇒ <code>Array.&lt;MatrixDescriptor&gt;</code></dt>
57-
<dd><p>Parser for SVG Trasform Attribute <a href="http://www.w3.org/TR/SVG/coords.html#TransformAttribute">http://www.w3.org/TR/SVG/coords.html#TransformAttribute</a> <br/>
58-
Warning: This should be considered BETA until it is released a stable version of pegjs.</p>
57+
<dd><p>Parser for SVG Trasform Attribute <a href="http://www.w3.org/TR/SVG/coords.html#TransformAttribute">http://www.w3.org/TR/SVG/coords.html#TransformAttribute</a></p>
5958
</dd>
6059
<dt><a href="#fromTriangles">fromTriangles(t1, t2)</a> ⇒ <code>Matrix</code></dt>
6160
<dd><p>Returns a matrix that transforms a triangle t1 into another triangle t2, or throws an exception if it is impossible.</p>
@@ -291,8 +290,7 @@ Parse a string formatted as matrix(a,b,c,d,e,f)
291290
<a name="fromTransformAttribute"></a>
292291

293292
## fromTransformAttribute(transformString) ⇒ <code>Array.&lt;MatrixDescriptor&gt;</code>
294-
Parser for SVG Trasform Attribute http://www.w3.org/TR/SVG/coords.html#TransformAttribute <br/>
295-
Warning: This should be considered BETA until it is released a stable version of pegjs.
293+
Parser for SVG Trasform Attribute http://www.w3.org/TR/SVG/coords.html#TransformAttribute
296294

297295
**Kind**: global function
298296
**Returns**: <code>Array.&lt;MatrixDescriptor&gt;</code> - Array of MatrixDescriptor

src/fromTransformAttribute.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import { parse } from './fromTransformAttribute.autogenerated'
22

33
/**
4-
* Parser for SVG Trasform Attribute http://www.w3.org/TR/SVG/coords.html#TransformAttribute <br/>
5-
* Warning: This should be considered BETA until it is released a stable version of pegjs.
4+
* Parser for SVG Trasform Attribute http://www.w3.org/TR/SVG/coords.html#TransformAttribute
65
* @param transformString {string} Transform string as defined by w3 Consortium
76
* @returns {MatrixDescriptor[]} Array of MatrixDescriptor
87
*

0 commit comments

Comments
 (0)