1
0
Fork 0

chore(markdown): Linting of dev docs

This commit is contained in:
Joost De Cock 2022-02-19 08:04:25 +01:00
parent 1d8beedd44
commit 265ad404da
317 changed files with 1281 additions and 1503 deletions

View file

@ -4,12 +4,12 @@ components: true
order: 70
---
The **Store** object holds a simple key/value store with
methods for storing and retrieving information.
The **Store** object holds a simple key/value store with
methods for storing and retrieving information.\
A single store per pattern is shared by all pattern parts.
A store is typically used to share information between parts. For example
the length of the neck opening in one part can be used to calculate the
the length of the neck opening in one part can be used to calculate the
length for the collar in another part.
The `Store` object exposes the following methods:

View file

@ -7,4 +7,3 @@ mixed store.get(string key)
```
Returnes the value stored under `key`.

View file

@ -7,4 +7,3 @@ void store.set(string key, mixed value)
```
Stores the value of `value` in the store under key `key`.