diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2019-12-01 13:10:22 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2019-12-01 13:10:22 +0100 |
commit | a23f9f8e8f1133bc1b55abe5901767e8a576f278 (patch) | |
tree | ae34a46bd3e9f1a3cbdb1fe0aab9f8cef7080261 /src | |
parent | 353167f50d9a3c5d7336d09d4b0445b5eba233c3 (diff) |
singular!
Diffstat (limited to 'src')
-rw-r--r-- | src/05_oop.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/05_oop.md b/src/05_oop.md index 8a86c50..d94648d 100644 --- a/src/05_oop.md +++ b/src/05_oop.md @@ -517,30 +517,30 @@ clase que defina un objeto en el que se puede buscar necesitas que sea un en el proceso de comunicación entre dos sistemas. — RAE [Consultado 01-12-2019]: <https://dle.rae.es/protocolo> -### *Representables*: `__repr__` +### *Representable*: `__repr__` -### *Contables*: `__len__` +### *Contable*: `__len__` ### *Buscable*: `__contains__` -### *Creables*: `__init__` +### *Creable*: `__init__` -### *Iterables*: `__next__` e `__iter__` +### *Iterable*: `__next__` e `__iter__` -### *Abribles* y *cerrables*: `__enter__` y `__exit__` +### *Abrible* y *cerrable*: `__enter__` y `__exit__` Que funcionen con el `with` > context management protocol -### *Llamables*: `__call__` +### *Llamable*: `__call__` Queda pendiente desde el capítulo sobre funciones, responder a lo que es un *callable* o *llamable*. https://stackoverflow.com/questions/111234/what-is-a-callable -### *Accesibles*: `__getitem__` y `__setitem__` +### *Accesible*: `__getitem__` y `__setitem__` ## Lo que has aprendido |