Small grammar/spell checking (#18466)

This commit is contained in:
crownedpigeon
2018-10-14 12:10:48 -04:00
committed by Quincy Larson
parent 7121f8ca41
commit 1f3f83c3ca

View File

@ -12,9 +12,9 @@ Developers start an SVG graphic with the `<svg>` tag and XML namespace like so:
</svg>
```
The sample also includes a `version` attribute. The `version` attribute is optional but it is recommended for complaince with XML specifications.
The sample also includes a `version` attribute. The `version` attribute is optional but it is recommended for compliance with XML specifications.
This sample won't display anything, it merely established a viewport. You can add `height` and `width` attributes to set a display size for the viewport this essentially establishes a canvas for you to work in.
This sample won't display anything, it merely established a viewport. You can add `height` and `width` attributes to set a display size for the viewport, this essentially establishes a canvas for you to work in.
With a viewport in place you can add basic graphics, text, and path elements.
@ -131,11 +131,11 @@ This draws the following chart:
## Editors
* [Vectr](https://vectr.com) - web and desktop tool fot creating and editing SVG graphics, free of charge
* [Vectr](https://vectr.com) - web and desktop tool for creating and editing SVG graphics, free of charge
## Tools to create SVG
There are few tools available to create SVG in the form of drawing program.
There are a few tools available to create SVG in the form of a drawing program.
- <a href='https://www.inkscape.org/' target='_blank' rel='nofollow'>Inkscape</a> - It is an open source tool for state-of-the-art vector drawing with an easy to use graphical interface.
- <a href='https://www.adobe.com/products/illustrator/' target='_blank' rel='nofollow'>Adobe Illustrator</a> - Adobe Illustrator is a commercial tool for Vector Imagery.
@ -144,7 +144,7 @@ For more tools, refer to <a href='https://https://www.w3.org/Graphics/SVG/WG/wik
## Why you should use SVGs
As a vector image format, it allows you to resize an image without any loss of quality and a particularly light weight.
As a vector image format, it allows you to resize an image without any loss of quality and is particularly light weight.
As an XML format, it allows you to benefit from the full power of JavaScript and especially CSS.
## Resources