Skip to content

Commit

Permalink
Delete Unneeded Syntaxes with 'DE'
Browse files Browse the repository at this point in the history
Delete the following alternative syntaxes which are not linguistically
correct (see #43):

- `hablar.i` — `hablar_con` (`hablar con (act) sobre de (tema)!`)
- `poner.i` — `poner_sobre` (`poner (obj1) sobre de (obj2)`)
  • Loading branch information
tajmone committed Oct 20, 2021
1 parent 9398c29 commit 36baf90
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
8 changes: 8 additions & 0 deletions alan_es/Foundation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ To learn more about the library version scheme, see the [`VERSION_SCHEME.md`][VE
<!-- MarkdownTOC autolink="true" bracket="round" autoanchor="false" lowercase="only_ascii" uri_encoding="true" levels="1,2,3" -->

- [Beta Releases](#beta-releases)
- [v0.3.1 \(2021/10/xx\)](#v031-202110xx)
- [v0.3.0 \(2021/10/14\)](#v030-20211014)
- [New Grammar Module](#new-grammar-module)
- [Library Code Optimizations](#library-code-optimizations)
Expand All @@ -39,6 +40,13 @@ To learn more about the library version scheme, see the [`VERSION_SCHEME.md`][VE
The __Spanish Foundation Library__ is currently maintained by [Tristano Ajmone] and [Ricardo Osio].


## v0.3.1 (2021/10/xx)


- Removed some linguistically incorrect alternative syntaxes with 'DE':
+ `hablar.i``hablar_con` (`hablar con (act) sobre de (tema)!`)
+ `poner.i``poner_sobre` (`poner (obj1) sobre de (obj2)`)

## v0.3.0 (2021/10/14)

### New Grammar Module
Expand Down
4 changes: 2 additions & 2 deletions alan_es/Foundation/examinar.i
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Syntax
And obj IsA container
else "No puedes mirar dentro de" say the obj. "."
mirar_en = mirar dentro (obj).
mirar_en = mirar dentro de (obj). -- @DELETE? (See #43)
mirar_en = mirar dentro de (obj). -- @CHECK: Is it working? (See #43)
mirar_en = mirar (obj).

Add to every object
Expand All @@ -152,7 +152,7 @@ Syntax
else "¡No puedes buscar en eso!"
buscar = buscar en (obj).
buscar = buscar dentro (obj).
buscar = buscar dentro de (obj). -- @DELETE? (See #43)
buscar = buscar dentro de (obj). -- @CHECK: Is it working? (See #43)

Add to every object
Verb buscar
Expand Down
1 change: 0 additions & 1 deletion alan_es/Foundation/hablar.i
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ Syntax
And act IsA thing
else "No puedes hablar con eso."
hablar_con = hablar con (act) (tema)!.
hablar_con = hablar con (act) sobre de (tema)!. -- @DELETE? (See #43)
hablar_con = hablar (act) (tema)!.
hablar_con = hablar (act) sobre (tema)!.

Expand Down
9 changes: 4 additions & 5 deletions alan_es/Foundation/poner.i
Original file line number Diff line number Diff line change
Expand Up @@ -62,30 +62,29 @@ Syntax
else "No puedes poner eso en ningún lugar."
And obj2 IsA thing
else "No puedes poner nada cerca " say the obj2. "."
poner_cerca = poner (obj1) cerca de (obj2). -- @DELETE? (See #43)
poner_cerca = poner (obj1) cerca de (obj2). -- @CHECK: Is it working? (See #43)

poner_detras = poner (obj1) detras (obj2)
Where obj1 IsA object
else "No puedes poner eso en ningún lugar."
And obj2 IsA thing
else "No puedes poner nada tras " say the obj2. "."
poner_detras = poner (obj1) detras de (obj2). -- @DELETE? (See #43)
poner_detras = poner (obj1) detras de (obj2). -- @CHECK: Is it working? (See #43)
poner_detras = poner (obj1) tras (obj2).
poner_detras = poner (obj1) tras de (obj2). -- @DELETE? (See #43)
poner_detras = poner (obj1) tras de (obj2). -- @CHECK: Is it working? (See #43)

poner_sobre = poner (obj1) sobre (obj2)
Where obj1 IsA object
else "No puedes poner eso en ningún lugar."
And obj2 IsA thing
else "No se puede poner nada sobre" say the obj1. "."
poner_sobre = poner (obj1) sobre de (obj2). -- @DELETE? (See #43)

poner_bajo = poner (obj1) debajo (obj2)
Where obj1 IsA object
else "No puedes poner eso en ningún lugar."
And obj2 IsA thing
else "No puedes poner nada bajo" say the obj1. "."
poner_bajo = poner (obj1) debajo de (obj2). -- @DELETE? (See #43)
poner_bajo = poner (obj1) debajo de (obj2). -- @CHECK: Is it working? (See #43)

Add to every object
Verb poner_cerca, poner_detras, poner_sobre, poner_bajo
Expand Down

0 comments on commit 36baf90

Please sign in to comment.