From 47ce6fa37577fc73cc82694d77d1c729cdba8eb9 Mon Sep 17 00:00:00 2001
From: Shi974 <42869389+Shi974@users.noreply.github.com>
Date: Mon, 26 Nov 2018 04:08:51 +0400
Subject: [PATCH] Shorter sentences for better readability (#27784)
* Shorter sentences for better readability
* fix: added front matter block back in
---
guide/english/svg/shapes/index.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/guide/english/svg/shapes/index.md b/guide/english/svg/shapes/index.md
index f32cb5e3ff..28e941e2d5 100644
--- a/guide/english/svg/shapes/index.md
+++ b/guide/english/svg/shapes/index.md
@@ -1,6 +1,7 @@
---
title: SVG Shapes
---
+
## SVG Shapes
Several shapes can be created using SVG drawing. An SVG drawing can use and combine seven shapes: Path, Rectangle, Circle, Ellipse, Line, Polyline, and Polygon.
@@ -39,7 +40,7 @@ There are more complicated line commands, which you can read more about on the [
### Rectangle
-The rectangle element `rect` draws a rectangle on the screen, and it accepts six attributes.
+The rectangle element `rect` draws a rectangle on the screen. It accepts six attributes.
```svg
@@ -69,7 +70,7 @@ Again, `cx` and `cy` assign the position of the center of the ellipse, and now `
### Line
-The `line` element is simple, and accepts four attributes.
+The `line` element is simple and accepts four attributes.
```svg