# `NervesMOTD.Word34567`
[🔗](https://github.com/nerves-project/nerves_motd/blob/v0.1.17/lib/nerves_motd/word34567.ex#L5)

Compact word lookup used by fwup

Words are stored in a tightly-packed string format where each row contains
5 words with lengths 3, 4, 5, 6, and 7 (25 letters per row).

# `word`

```elixir
@spec word(byte()) :: String.t()
```

Retrieve a word by index

## Examples
    iex> NervesMOTD.Word34567.word(108)
    "garlic"

    iex> NervesMOTD.Word34567.word(194)
    "raccoon"

---

*Consult [api-reference.md](api-reference.md) for complete listing*
