From c53c492a8aa9c19fee9b578d3fd53a246704d8a3 Mon Sep 17 00:00:00 2001 From: Olsyx Date: Mon, 22 Oct 2018 18:12:15 +0200 Subject: [PATCH] Fixed mathematical notation (#20486) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The operation was written as _axb_, but in mathematics, it would describe the polynomial a * x * b, so I substituted the x for a *. La operación estaba escrita como _axb_, pero en matemáticas eso representa al polinomio a * x * b, así que he substituido x por un *. --- guide/spanish/mathematics/area-of-a-rectangle/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/spanish/mathematics/area-of-a-rectangle/index.md b/guide/spanish/mathematics/area-of-a-rectangle/index.md index d5a313af70..2be84d48e5 100644 --- a/guide/spanish/mathematics/area-of-a-rectangle/index.md +++ b/guide/spanish/mathematics/area-of-a-rectangle/index.md @@ -6,12 +6,12 @@ localeTitle: Área de un rectángulo El área de un rectángulo se puede calcular multiplicando las longitudes de los dos lados perpendiculares entre sí. -`Area = axb` +`Area = a * b` **Por ejemplo** Para un rectángulo donde _a = 3_ y _b = 4_ -`Area = axb = 3 x 4 = 12` +`Area = a * b = 3 x 4 = 12` #### Más información: -* [Empollón virtual](http://virtualnerd.com/pre-algebra/perimeter-area-volume/perimeter-and-area/area-formulas-examples/rectangle-area-example) \ No newline at end of file +* [Empollón virtual](http://virtualnerd.com/pre-algebra/perimeter-area-volume/perimeter-and-area/area-formulas-examples/rectangle-area-example)