Clarify note in Spanish (#25647)

This commit is contained in:
Naaani
2018-10-28 23:40:41 -05:00
committed by Tracey Bushman
parent 7ef729bfb3
commit 6953662931

View File

@ -59,10 +59,11 @@ dataType[] arrayName = {value_0, value_1, ..., value_k};
```java
double[] list = {1, 2, 3, 4};
The code above is equivalent to:
El fragmento de código arriba es equivalente a:
double[] list = new double[4];
*IMPORTANT NOTE: Please note the difference between the types of brackets
that are used to represent arrays in two different ways.
*NOTA IMPORTANTE: Por favor notar la diferencia entre los
tipos de paréntesis que son usandos para representar arrays
de dos diferentes maneras.
```
## Accediendo a Arrays:
@ -183,4 +184,4 @@ Salida:
#### Más información:
* Fuente: [Java Arrays](https://docs.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html)
* Fuente: [Java Arrays](https://docs.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html)