From 1f3f83c3caf04eadad1cd1c084c71f47276e20f7 Mon Sep 17 00:00:00 2001 From: crownedpigeon Date: Sun, 14 Oct 2018 12:10:48 -0400 Subject: [PATCH] Small grammar/spell checking (#18466) --- client/src/pages/guide/english/svg/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/src/pages/guide/english/svg/index.md b/client/src/pages/guide/english/svg/index.md index e529f89e36..09f4e8960a 100644 --- a/client/src/pages/guide/english/svg/index.md +++ b/client/src/pages/guide/english/svg/index.md @@ -12,9 +12,9 @@ Developers start an SVG graphic with the `` tag and XML namespace like so: ``` -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. @@ -64,8 +64,8 @@ A = arc ### The canvas element -Canvas graphics can be drawn onto a element. You can give suchan element width and height attributes to determine its size in pixels.A new canvas is empty, meaning it is entirely transparent and thusshows up simply as empty space in the document. -The tag is intended to support different styles of drawing.To get access to an actual drawing interface, we first need to create a context, which is an object whose methods provide the drawing interface.There are currently two widely supported drawing styles: "2d" for two-dimensional graphics and "webgl" for three-dimensional graphics through the OpenGL interface. +Canvas graphics can be drawn onto a element. You can give such an element width and height attributes to determine its size in pixels. A new canvas is empty, meaning it is entirely transparent and thus shows up simply as empty space in the document. +The tag is intended to support different styles of drawing. To get access to an actual drawing interface, we first need to create a context, which is an object whose methods provide the drawing interface. There are currently two widely supported drawing styles: "2d" for two-dimensional graphics and "webgl" for three-dimensional graphics through the OpenGL interface. A context is created through the getContext method on the element. ``` @@ -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. - Inkscape - It is an open source tool for state-of-the-art vector drawing with an easy to use graphical interface. - Adobe Illustrator - Adobe Illustrator is a commercial tool for Vector Imagery. @@ -144,7 +144,7 @@ For more tools, refer to