Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/en/ss14-by-example/fluent-and-localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ The easiest to understand is `CAPITALIZE`, which just capitalizes the first lett

The functions `GENDER()` and `PROPER()` return the grammatical gender (masculine, feminine, epicene, neuter) and the proper-ness of an entity respectively.

The `POSS-NOUN` function returns the basic possessive form of whatever is passed in. This usually just means adding 's to the end, but will handle adding ' instead for words that end in the letter s. For example, `You laugh at { POSS-NOUN($ent) } joke` will handle "Bob's joke" and "Chris' joke".

Functions also exist for determining the definite and indefinite articles that an entity should have--These functions are `THE`, which returns 'the' if the entity is proper and nothing otherwise, and `INDEFINITE`, which return either 'a' or 'an' depending on some complex rules.

```
Expand Down
Loading