summaryrefslogtreecommitdiffhomepage
path: root/es-es
diff options
context:
space:
mode:
Diffstat (limited to 'es-es')
-rw-r--r--es-es/asymptotic-notation-es.html.markdown1
-rw-r--r--es-es/awk-es.html.markdown1
-rw-r--r--es-es/bf-es.html.markdown2
-rw-r--r--es-es/binary-search-es.html.markdown5
-rw-r--r--es-es/c++-es.html.markdown2
-rw-r--r--es-es/c-es.html.markdown1
-rw-r--r--es-es/coldfusion-es.html.markdown1
-rw-r--r--es-es/common-lisp-es.html.markdown1
-rw-r--r--es-es/csharp-es.html.markdown1
-rw-r--r--es-es/dart-es.html.markdown1
-rw-r--r--es-es/edn-es.html.markdown1
-rw-r--r--es-es/elixir-es.html.markdown1
-rw-r--r--es-es/factor-es.html.markdown2
-rw-r--r--es-es/forth-es.html.markdown1
-rw-r--r--es-es/groovy-es.html.markdown3
-rw-r--r--es-es/hack-es.html.markdown1
-rw-r--r--es-es/haml-es.html.markdown1
-rw-r--r--es-es/haskell-es.html.markdown1
-rw-r--r--es-es/html-es.html.markdown1
-rw-r--r--es-es/java-es.html.markdown1
-rw-r--r--es-es/jquery-es.html.markdown4
-rw-r--r--es-es/json-es.html.markdown1
-rw-r--r--es-es/lambda-calculus-es.html.markdown5
-rw-r--r--es-es/learnsmallbasic-es.html.markdown2
-rw-r--r--es-es/less-es.html.markdown4
-rw-r--r--es-es/matlab-es.html.markdown1
-rw-r--r--es-es/objective-c-es.html.markdown2
-rw-r--r--es-es/pascal-es.html.markdown1
-rw-r--r--es-es/perl-es.html.markdown1
-rw-r--r--es-es/php-composer-es.html.markdown2
-rw-r--r--es-es/php-es.html.markdown1
-rw-r--r--es-es/pyqt-es.html.markdown1
-rw-r--r--es-es/python-es.html.markdown1
-rw-r--r--es-es/pythonstatcomp-es.html.markdown1
-rw-r--r--es-es/r-es.html.markdown4
-rw-r--r--es-es/raku-es.html.markdown2
-rw-r--r--es-es/sass-es.html.markdown3
-rw-r--r--es-es/scala-es.html.markdown2
-rw-r--r--es-es/tcl-es.html.markdown2
-rw-r--r--es-es/tmux-es.html.markdown4
-rw-r--r--es-es/tmux.html.markdown4
-rw-r--r--es-es/typescript-es.html.markdown1
-rw-r--r--es-es/visualbasic-es.html.markdown1
-rw-r--r--es-es/xml-es.html.markdown3
-rw-r--r--es-es/yaml-es.html.markdown1
45 files changed, 15 insertions, 68 deletions
diff --git a/es-es/asymptotic-notation-es.html.markdown b/es-es/asymptotic-notation-es.html.markdown
index 3507429c..7ee21c6d 100644
--- a/es-es/asymptotic-notation-es.html.markdown
+++ b/es-es/asymptotic-notation-es.html.markdown
@@ -117,6 +117,7 @@ Echemos un vistazo a la definición de O-grande.
```
3log n + 100 <= c * log n
```
+
¿Hay alguna constante c que satisface esto para todo n?
```
diff --git a/es-es/awk-es.html.markdown b/es-es/awk-es.html.markdown
index 1ee12956..2165c47a 100644
--- a/es-es/awk-es.html.markdown
+++ b/es-es/awk-es.html.markdown
@@ -354,7 +354,6 @@ END {
if (nlines)
print "La edad promedio para " name " es " sum / nlines
}
-
```
Más información:
diff --git a/es-es/bf-es.html.markdown b/es-es/bf-es.html.markdown
index df1ae2e7..0769e2a7 100644
--- a/es-es/bf-es.html.markdown
+++ b/es-es/bf-es.html.markdown
@@ -16,7 +16,6 @@ Puedes probar brainfuck en tu navegador con [brainfuck-visualizer](http://fatihe
```
-
Cualquier caracter que no sea "><+-.,[]" (sin incluir las comillas)
será ignorado.
@@ -84,6 +83,7 @@ hasta la próxima vez. Para resolver este problema también incrementamos la
celda #4 y luego copiamos la celda #4 a la celda #2. La celda #3 contiene
el resultado.
```
+
Y eso es brainfuck. No es tan difícil, ¿verdad? Como diversión, puedes escribir
tu propio intérprete de brainfuck o tu propio programa en brainfuck. El
intérprete es relativamente sencillo de hacer, pero si eres masoquista,
diff --git a/es-es/binary-search-es.html.markdown b/es-es/binary-search-es.html.markdown
index a1b42d21..51776aba 100644
--- a/es-es/binary-search-es.html.markdown
+++ b/es-es/binary-search-es.html.markdown
@@ -22,8 +22,8 @@ Un método sencillo para poner en práctica la búsqueda es hacer una búsqueda
Búsqueda Lineal: O (n) Tiempo lineal
Búsqueda Binaria: O ( log(n) ) Tiempo logarítmico
-
```
+
```
def search(arr, x):
@@ -33,8 +33,8 @@ def search(arr, x):
return i
return -1
-
```
+
## Algoritmo de Búsqueda Binaria
El requisito básico para que la búsqueda binaria funcione es que los datos a buscar deben estar ordenados (en cualquier orden).
@@ -49,7 +49,6 @@ La idea de la búsqueda binaria es usar la información de que la matriz está o
3) Si no coincide, si x es mayor que el elemento del medio, entonces x solo puede estar en la mitad derecha justo después del elemento del medio. Así que recurrimos a la mitad derecha.
4) Si no (x es más pequeño) recurrimos a la mitad izquierda.
Siguiendo la implementación recursiva de búsqueda binaria.
-
```
### Notas finales
diff --git a/es-es/c++-es.html.markdown b/es-es/c++-es.html.markdown
index f624d3c7..16abdcb0 100644
--- a/es-es/c++-es.html.markdown
+++ b/es-es/c++-es.html.markdown
@@ -818,8 +818,8 @@ v.push_back(Foo()); // Nuevo valor se copia en el primer Foo que insertamos
// Consulta la sección acerca de los objetos temporales para la
// explicación de por qué esto funciona.
v.swap(vector<Foo>());
-
```
+
Otras lecturas:
* Una referencia del lenguaje hasta a la fecha se puede encontrar en [CPP Reference](http://cppreference.com/w/cpp).
diff --git a/es-es/c-es.html.markdown b/es-es/c-es.html.markdown
index ae357d91..249046ba 100644
--- a/es-es/c-es.html.markdown
+++ b/es-es/c-es.html.markdown
@@ -414,7 +414,6 @@ typedef void (*my_fnp_type)(char *);
// Es usado para declarar la variable puntero actual:
// ...
// my_fnp_type f;
-
```
## Otras lecturas
diff --git a/es-es/coldfusion-es.html.markdown b/es-es/coldfusion-es.html.markdown
index 2e98f910..db7fdaa9 100644
--- a/es-es/coldfusion-es.html.markdown
+++ b/es-es/coldfusion-es.html.markdown
@@ -234,6 +234,7 @@ ColdFusion comenzó como un lenguaje basado en etiquetas. Casi toda la funcional
<em>Código de referencia (las funciones deben devolver algo para admitir IE)</em>
```
+
```cfs
<cfcomponent>
<cfset this.hola = "Hola" />
diff --git a/es-es/common-lisp-es.html.markdown b/es-es/common-lisp-es.html.markdown
index 526ea621..d764bd46 100644
--- a/es-es/common-lisp-es.html.markdown
+++ b/es-es/common-lisp-es.html.markdown
@@ -20,7 +20,6 @@ popular y reciente es [Land of Lisp](http://landoflisp.com/). Un nuevo libro ace
prácticas, [Common Lisp Recipes](http://weitz.de/cl-recipes/), fue publicado recientemente.
```lisp
-
;;;-----------------------------------------------------------------------------
;;; 0. Sintaxis
;;;-----------------------------------------------------------------------------
diff --git a/es-es/csharp-es.html.markdown b/es-es/csharp-es.html.markdown
index 72a0f90c..d8d08f07 100644
--- a/es-es/csharp-es.html.markdown
+++ b/es-es/csharp-es.html.markdown
@@ -599,7 +599,6 @@ namespace Learning
}
}
} // Fin del espacio de nombres
-
```
## Temas no cubiertos
diff --git a/es-es/dart-es.html.markdown b/es-es/dart-es.html.markdown
index d0f57b95..5c3baf40 100644
--- a/es-es/dart-es.html.markdown
+++ b/es-es/dart-es.html.markdown
@@ -518,7 +518,6 @@ main() {
example27, example28, example29, example30
].forEach((ef) => ef());
}
-
```
## Lecturas adicionales
diff --git a/es-es/edn-es.html.markdown b/es-es/edn-es.html.markdown
index 32bba37d..ab33f61c 100644
--- a/es-es/edn-es.html.markdown
+++ b/es-es/edn-es.html.markdown
@@ -101,7 +101,6 @@ false
(edn/read-string {:lectores {'MyYelpClone/MenuItem map->menu-item}}
"#MyYelpClone/MenuItem {:nombre \"huevos-benedict\" :clasificacion 10}")
; -> #user.MenuItem{:nombre "huevos-benedict", :clasificacion 10}
-
```
# Referencias
diff --git a/es-es/elixir-es.html.markdown b/es-es/elixir-es.html.markdown
index 37acf6ad..14d2938b 100644
--- a/es-es/elixir-es.html.markdown
+++ b/es-es/elixir-es.html.markdown
@@ -16,7 +16,6 @@ Es completamente compatibe con Erlang, sin embargo, ofrece una sintaxis más est
y otras características más.
```elixir
-
# Los comentarios de única línea
# comienzan con un símbolo numérico.
diff --git a/es-es/factor-es.html.markdown b/es-es/factor-es.html.markdown
index 67c60de7..a0ceb27d 100644
--- a/es-es/factor-es.html.markdown
+++ b/es-es/factor-es.html.markdown
@@ -191,8 +191,6 @@ name get-global . ! "Bob"
0 [ 2 + ] nth ! 2
1 [ 2 + ] nth ! +
[ 2 + ] \ - suffix ! Quotation [ 2 + - ]
-
-
```
##Listo para más?
diff --git a/es-es/forth-es.html.markdown b/es-es/forth-es.html.markdown
index 61123151..68068ba9 100644
--- a/es-es/forth-es.html.markdown
+++ b/es-es/forth-es.html.markdown
@@ -216,7 +216,6 @@ page
\ Terminando Gforth:
\ bye
-
```
##Listo Para Mas?
diff --git a/es-es/groovy-es.html.markdown b/es-es/groovy-es.html.markdown
index 262d5e6a..e22de3c5 100644
--- a/es-es/groovy-es.html.markdown
+++ b/es-es/groovy-es.html.markdown
@@ -11,7 +11,6 @@ filename: groovy-es.html
Groovy - Un lenguaje dinámico para la plataforma Java [Leer más aquí.](http://www.groovy-lang.org/)
```groovy
-
/*
Hora de configurar:
@@ -411,8 +410,6 @@ int sum(int x, int y) {
}
assert sum(2,5) == 7
-
-
```
## Más recursos
diff --git a/es-es/hack-es.html.markdown b/es-es/hack-es.html.markdown
index 1059117a..368e0237 100644
--- a/es-es/hack-es.html.markdown
+++ b/es-es/hack-es.html.markdown
@@ -295,7 +295,6 @@ class Samuel
$cat = new Samuel();
$cat instanceof KittenInterface === true; // True
-
```
## Más información
diff --git a/es-es/haml-es.html.markdown b/es-es/haml-es.html.markdown
index be90b8f3..88e7558b 100644
--- a/es-es/haml-es.html.markdown
+++ b/es-es/haml-es.html.markdown
@@ -150,7 +150,6 @@ $ haml archivo_entrada.haml archivo_salida.html
:javascript
console.log('Este es un <script> en linea');
-
```
## Recusros adicionales
diff --git a/es-es/haskell-es.html.markdown b/es-es/haskell-es.html.markdown
index 66ce109d..ed09db05 100644
--- a/es-es/haskell-es.html.markdown
+++ b/es-es/haskell-es.html.markdown
@@ -415,7 +415,6 @@ foo :: Integer
¿Cual es tu nombre?
Amigo
Hola, Amigo
-
```
Existe mucho más de Haskell, incluyendo clases de tipos y mónadas. Estas son
diff --git a/es-es/html-es.html.markdown b/es-es/html-es.html.markdown
index e4623131..115c7309 100644
--- a/es-es/html-es.html.markdown
+++ b/es-es/html-es.html.markdown
@@ -108,7 +108,6 @@ Este artículo está centrado principalmente en la sintaxis HTML y algunos tips
<td>Segunda fila, segunda columna</td>
</tr>
</table>
-
```
## Uso
diff --git a/es-es/java-es.html.markdown b/es-es/java-es.html.markdown
index e48a3b73..3aa61a5c 100644
--- a/es-es/java-es.html.markdown
+++ b/es-es/java-es.html.markdown
@@ -395,7 +395,6 @@ class PennyFarthing extends Bicicleta {
}
}
-
```
## Más Lectura
diff --git a/es-es/jquery-es.html.markdown b/es-es/jquery-es.html.markdown
index 27ad48bb..2388ae84 100644
--- a/es-es/jquery-es.html.markdown
+++ b/es-es/jquery-es.html.markdown
@@ -14,8 +14,6 @@ jQuery es una librería de JavaScript que le ayuda a "hacer más y escribir meno
Debido a que jQuery es una librería de JavaScript debes [aprender JavaScript primero](https://learnxinyminutes.com/docs/es-es/javascript-es/)
```js
-
-
///////////////////////////////////
// 1. Selectores
@@ -136,6 +134,4 @@ var heights = [];
$('p').each(function() {
heights.push($(this).height()); // Añade todas las alturas "p" de la etiqueta a la matriz
});
-
-
``` \ No newline at end of file
diff --git a/es-es/json-es.html.markdown b/es-es/json-es.html.markdown
index c98049f9..2e61e43d 100644
--- a/es-es/json-es.html.markdown
+++ b/es-es/json-es.html.markdown
@@ -14,7 +14,6 @@ Siendo JSON un formato de intercambio de infomación tan sencillo, probablemente
JSON en su forma más pura no tiene comentarios, pero la mayoría de los parseadores aceptarán comentarios de C (//, /\* \*/). De todas formas, para el propóstio de esto todo será JSON 100% válido. Por suerte, habla por sí mismo.
```json
-
{
"llave": "valor",
diff --git a/es-es/lambda-calculus-es.html.markdown b/es-es/lambda-calculus-es.html.markdown
index d49545c2..2465f7b1 100644
--- a/es-es/lambda-calculus-es.html.markdown
+++ b/es-es/lambda-calculus-es.html.markdown
@@ -141,6 +141,7 @@ Tome el número 2 de Church por ejemplo:
`2 = λf.λx.f(f x)`
Para la parte interior `λx.f(f x)`:
+
```
λx.f(f x)
= S (λx.f) (λx.(f x)) (case 3)
@@ -149,6 +150,7 @@ Para la parte interior `λx.f(f x)`:
```
Así que:
+
```
2
= λf.λx.f(f x)
@@ -158,6 +160,7 @@ Así que:
```
Para el primer argumento `λf.(S (K f))`:
+
```
λf.(S (K f))
= S (λf.S) (λf.(K f)) (case 3)
@@ -166,6 +169,7 @@ Para el primer argumento `λf.(S (K f))`:
```
Para el segundo argumento `λf.(S (K f) I)`:
+
```
λf.(S (K f) I)
= λf.((S (K f)) I)
@@ -176,6 +180,7 @@ Para el segundo argumento `λf.(S (K f) I)`:
```
Uniéndolos:
+
```
2
= S (λf.(S (K f))) (λf.(S (K f) I))
diff --git a/es-es/learnsmallbasic-es.html.markdown b/es-es/learnsmallbasic-es.html.markdown
index ff320afb..a0a80454 100644
--- a/es-es/learnsmallbasic-es.html.markdown
+++ b/es-es/learnsmallbasic-es.html.markdown
@@ -118,8 +118,8 @@ END IF
PRINT aa
PAUSE
-
```
+
## Artículos
* [Primeros pasos](http://smallbasic.sourceforge.net/?q=node/1573)
diff --git a/es-es/less-es.html.markdown b/es-es/less-es.html.markdown
index fa09db9f..5837dd7c 100644
--- a/es-es/less-es.html.markdown
+++ b/es-es/less-es.html.markdown
@@ -12,8 +12,6 @@ Less es un pre-procesador CSS, que añade características como variables, anida
Less (y otros pre-procesadores como [Sass](http://sass-lang.com/) ayudan a los desarrolladores a escribir código mantenible y DRY (Don't Repeat Yourself).
```css
-
-
//Los comentarios de una línea son borrados cuando Less es compilado a CSS.
/* Los comentarios multi-línea se mantienen. */
@@ -372,8 +370,6 @@ body {
.gutter {
width: 6.25%;
}
-
-
```
## Practica Less
diff --git a/es-es/matlab-es.html.markdown b/es-es/matlab-es.html.markdown
index 9290e505..6c9800c2 100644
--- a/es-es/matlab-es.html.markdown
+++ b/es-es/matlab-es.html.markdown
@@ -556,7 +556,6 @@ ans = a.multiplyLatBy(a,1/3)
% la adición de dos objetos Waypoint.
b = WaypointClass(15.0, 32.0)
c = a + b
-
```
## Más sobre MATLAB
diff --git a/es-es/objective-c-es.html.markdown b/es-es/objective-c-es.html.markdown
index 28733cfb..a2eb33f7 100644
--- a/es-es/objective-c-es.html.markdown
+++ b/es-es/objective-c-es.html.markdown
@@ -840,8 +840,8 @@ __weak NSSet *weakSet; // Referencia débil a un objeto existente. Cuando el
__unsafe_unretained NSArray *unsafeArray; // Como __weak, pero unsafeArray no
// es asginado a nil cuando el objeto
// existente es liberado.
-
```
+
## Lecturas sugeridas
[Wikipedia Objective-C](http://es.wikipedia.org/wiki/Objective-C)
diff --git a/es-es/pascal-es.html.markdown b/es-es/pascal-es.html.markdown
index 8328fa1e..579358c0 100644
--- a/es-es/pascal-es.html.markdown
+++ b/es-es/pascal-es.html.markdown
@@ -200,6 +200,5 @@ Begin // bloque de programa principal
// muestra i!
writeln('dummy = ', dummy); // siempre muestra '3' ya que dummy no ha cambiado.
End.
-
```
diff --git a/es-es/perl-es.html.markdown b/es-es/perl-es.html.markdown
index 76e9b6e6..91ee969b 100644
--- a/es-es/perl-es.html.markdown
+++ b/es-es/perl-es.html.markdown
@@ -139,7 +139,6 @@ sub logger {
# Ahora podemos utilizar la subrutina al igual que cualquier otra función incorporada:
logger("Tenemos una subrutina logger!");
-
```
#### Utilizando módulos Perl
diff --git a/es-es/php-composer-es.html.markdown b/es-es/php-composer-es.html.markdown
index 3add3e31..ed20edd3 100644
--- a/es-es/php-composer-es.html.markdown
+++ b/es-es/php-composer-es.html.markdown
@@ -110,7 +110,6 @@ composer update phpunit/phpunit
# Si desea migrar la preferencia de un paquete a una versión más reciente, puede que tenga que quitar primero el paquete de más antiguo y sus dependencias.
composer remove --dev phpunit/phpunit
composer require --dev phpunit/phpunit:^5.0
-
```
## Autocargador
@@ -136,6 +135,7 @@ En `composer.json`, añadir el campo 'autoload':
}
}
```
+
Esto le indicará al cargador automático que busque cualquier cosa en el espacio de nombres `\Acme\` dentro de la carpeta src`.
También puedes usar [usar PSR-0, un mapa de clase o simplemente una lista de archivos para incluir (EN)](https://getcomposer.org/doc/04-schema.md#autoload). También está el campo `autoload-dev` para espacios de nombres de sólo desarrollo.
diff --git a/es-es/php-es.html.markdown b/es-es/php-es.html.markdown
index fa52353c..ba07ed00 100644
--- a/es-es/php-es.html.markdown
+++ b/es-es/php-es.html.markdown
@@ -807,7 +807,6 @@ try {
} catch (MiExcepcion $e) {
// Manejar la excepción
}
-
```
## Más información
diff --git a/es-es/pyqt-es.html.markdown b/es-es/pyqt-es.html.markdown
index 9a5eab8c..e2cf96d7 100644
--- a/es-es/pyqt-es.html.markdown
+++ b/es-es/pyqt-es.html.markdown
@@ -38,7 +38,6 @@ def window():
if __name__ == '__main__':
window()
-
```
Para poder hacer uso de las funciones más avanzades en **pyqt** necesitamos agregar elementos adicionales.
diff --git a/es-es/python-es.html.markdown b/es-es/python-es.html.markdown
index a8f01089..6fec491e 100644
--- a/es-es/python-es.html.markdown
+++ b/es-es/python-es.html.markdown
@@ -15,7 +15,6 @@ Es básicamente pseudocódigo ejecutable.
¡Comentarios serán muy apreciados! Pueden contactarme en [@louiedinh](http://twitter.com/louiedinh) o louiedinh [at] [servicio de email de google]
```python
-
# Comentarios de una línea comienzan con una almohadilla (o signo gato)
""" Strings multilinea pueden escribirse
diff --git a/es-es/pythonstatcomp-es.html.markdown b/es-es/pythonstatcomp-es.html.markdown
index b3d2f0ff..a901bbae 100644
--- a/es-es/pythonstatcomp-es.html.markdown
+++ b/es-es/pythonstatcomp-es.html.markdown
@@ -12,7 +12,6 @@ lang: es-es
Este es un tutorial de como realizar tareas típicas de programación estadística usando Python. Está destinado a personas con cierta familiaridad con Python y con experiencia en programación estadística en lenguajes como R, Stata, SAS, SPSS, or MATLAB.
```python
-
# 0. Cómo configurar ====
""" Configurar con IPython y pip install lo siguiente: numpy, scipy, pandas,
diff --git a/es-es/r-es.html.markdown b/es-es/r-es.html.markdown
index 850952fa..50c02e38 100644
--- a/es-es/r-es.html.markdown
+++ b/es-es/r-es.html.markdown
@@ -15,7 +15,6 @@ gráficas. También puedes ejecutar comandos `R` dentro de un documento de
LaTeX.
```r
-
# Los comentarios inician con símbolos numéricos.
# No puedes hacer comentarios de múltiples líneas
@@ -706,9 +705,6 @@ pp <- ggplot(ll, aes(x=time,price))
pp + geom_point()
# ggplot2 tiene una excelente documentación
# (disponible en http://docs.ggplot2.org/current/)
-
-
-
```
## ¿Cómo obtengo R?
diff --git a/es-es/raku-es.html.markdown b/es-es/raku-es.html.markdown
index 09341056..0c186682 100644
--- a/es-es/raku-es.html.markdown
+++ b/es-es/raku-es.html.markdown
@@ -1910,8 +1910,8 @@ for <a b c> {
## en los objetos para compararlos.
## - `=:=` es la identidad de contenedor y usa `VAR()`
## en los objetos para compararlos.
-
```
+
Si quieres ir más allá de lo que se muestra aquí, puedes:
- Leer la [documentación de Raku](https://docs.raku.org/). Esto es un recurso
diff --git a/es-es/sass-es.html.markdown b/es-es/sass-es.html.markdown
index d130fe8c..ae5695b6 100644
--- a/es-es/sass-es.html.markdown
+++ b/es-es/sass-es.html.markdown
@@ -18,8 +18,6 @@ Sass tiene dos sintaxis para elegir: SCSS, que usa la misma que CSS pero con las
Si ya estás familiarizado con CSS3, vas a entender Sass relativamente rápido. Sass no ofrece nuevas propiedades de estilo, si no que añade herramientas para escribir tus CSS de manera más eficiente, haciendo su mantenimiento mucho más sencillo.
```scss
-
-
//Los comentarios en una sola línea son eliminados cuando Sass es compilado a CSS.
/* Los comentarios multi-línea se mantienen. */
@@ -562,7 +560,6 @@ body {
.gutter {
width: 6.25%;
}
-
```
## ¿SASS o Sass?
diff --git a/es-es/scala-es.html.markdown b/es-es/scala-es.html.markdown
index 2dcb9e7f..becb92dd 100644
--- a/es-es/scala-es.html.markdown
+++ b/es-es/scala-es.html.markdown
@@ -14,7 +14,6 @@ lang: es-es
Scala - El lenguaje escalable
```scala
-
/////////////////////////////////////////////////
// 0. Básicos
/////////////////////////////////////////////////
@@ -729,7 +728,6 @@ val writer = new PrintWriter("miarchivo.txt")
writer.write("Escribiendo linea por linea" + util.Properties.lineSeparator)
writer.write("Otra linea" + util.Properties.lineSeparator)
writer.close()
-
```
## Más recursos
diff --git a/es-es/tcl-es.html.markdown b/es-es/tcl-es.html.markdown
index 5db72ae1..f1835ef2 100644
--- a/es-es/tcl-es.html.markdown
+++ b/es-es/tcl-es.html.markdown
@@ -587,8 +587,6 @@ coroutine c apply {{} {
# Pon las cosas en marcha
a
-
-
```
## Reference
diff --git a/es-es/tmux-es.html.markdown b/es-es/tmux-es.html.markdown
index a7354be1..45800c72 100644
--- a/es-es/tmux-es.html.markdown
+++ b/es-es/tmux-es.html.markdown
@@ -18,7 +18,6 @@ y luego ser insertado nuevamente.
```
-
tmux [command] # Corre un comando
# 'tmux' sin comandos creará una nueva sesión
@@ -52,7 +51,6 @@ y luego ser insertado nuevamente.
-t "#" # Cierra la sesión destino
-a # Cierra todas las sesiones
-a -t "#" # Cierra todas las sesiones menos el destino
-
```
@@ -108,7 +106,6 @@ combinaciones de teclas llamadas teclas 'Prefijo'.
M-Up, M-Down # Redimensiona el panel actual en pasos de cinco celdas
M-Left, M-Right
-
```
@@ -236,7 +233,6 @@ set -g status-left "#[fg=red] #H#[fg=green]:#[fg=white]#S#[fg=green] |#[default]
# Requiere https://github.com/thewtex/tmux-mem-cpu-load/
set -g status-interval 4
set -g status-right "#[fg=green] | #[fg=white]#(tmux-mem-cpu-load)#[fg=green] | #[fg=cyan]%H:%M #[default]"
-
```
diff --git a/es-es/tmux.html.markdown b/es-es/tmux.html.markdown
index aaa4cb59..cd29a972 100644
--- a/es-es/tmux.html.markdown
+++ b/es-es/tmux.html.markdown
@@ -16,7 +16,6 @@ más tarde.
```
-
tmux [command] # Correr un comando de tmux
# 'tmux' sin comando crea una nueva sesión.
@@ -50,7 +49,6 @@ más tarde.
-t "#" # Eliminar la sesión "#"
-a # Eliminar todas las sessiones
-a -t "#" # Eliminar todas las sessiones menos la "#"
-
```
@@ -100,7 +98,6 @@ Para controlar una sesión atada se usa la combinación llamada 'Prefijo' + ataj
M-Up, M-Down # Dimensionar el panel actual en pasos de cinco celdas
M-Left, M-Right
-
```
@@ -225,7 +222,6 @@ set -g status-left "#[fg=red] #H#[fg=green]:#[fg=white]#S#[fg=green] |#[default]
# Requiere https://github.com/thewtex/tmux-mem-cpu-load/
set -g status-interval 4
set -g status-right "#[fg=green] | #[fg=white]#(tmux-mem-cpu-load)#[fg=green] | #[fg=cyan]%H:%M #[default]"
-
```
diff --git a/es-es/typescript-es.html.markdown b/es-es/typescript-es.html.markdown
index fbe1290b..053f2beb 100644
--- a/es-es/typescript-es.html.markdown
+++ b/es-es/typescript-es.html.markdown
@@ -161,7 +161,6 @@ var tuple = pairToTuple({ item1:"hello", item2:"world"});
// Incluyendo referencias a un archivo de definición:
/// <reference path="jquery.d.ts" />
-
```
## Para mayor información
diff --git a/es-es/visualbasic-es.html.markdown b/es-es/visualbasic-es.html.markdown
index fb0b1d27..a84dda5a 100644
--- a/es-es/visualbasic-es.html.markdown
+++ b/es-es/visualbasic-es.html.markdown
@@ -272,7 +272,6 @@ Module Module1
End Sub
End Module
-
```
## Referencias
diff --git a/es-es/xml-es.html.markdown b/es-es/xml-es.html.markdown
index 23831f3b..a50b3d30 100644
--- a/es-es/xml-es.html.markdown
+++ b/es-es/xml-es.html.markdown
@@ -62,8 +62,6 @@ sólo la guarda.
<!-- Debajo, un elemento con dos atributos. -->
<archivo tipo="gif" id="4293">computer.gif</archivo>
-
-
```
* Documentos con buen formato x Validación
@@ -78,7 +76,6 @@ válida.
Con esta herramienta puedes validar datos XML fuera de la aplicación
```xml
-
<!-- Debajo puedes encontrar una versión simplificada del documento
tiendaDeLibros en adición a la definición DTD.-->
diff --git a/es-es/yaml-es.html.markdown b/es-es/yaml-es.html.markdown
index 582fa60e..a5c03cbe 100644
--- a/es-es/yaml-es.html.markdown
+++ b/es-es/yaml-es.html.markdown
@@ -216,7 +216,6 @@ archivo_gif: !!binary |
OTk6enp56enmlpaWNjY6Ojo4SEhP/++f/++f/++f/++f/++f/++f/++f/++f/+
+f/++f/++f/++f/++f/++SH+Dk1hZGUgd2l0aCBHSU1QACwAAAAADAAMAAAFLC
AgjoEwnuNAFOhpEMTRiggcz4BNJHrv/zCFcLiwMWYNG84BwwEeECcgggoBADs=
-
```
### Recursos adicionales