Fixed a grammar mistake in the database docs (#6771)

"The `VACUUM` command cleans the your database."
This commit is contained in:
lennartk 2018-10-14 09:24:34 +02:00 committed by Franck Nijhof
parent 4c0ac8ac1f
commit 744b362b88

View File

@ -116,7 +116,7 @@ If you don't want to keep certain entities, you can delete them permanently:
sqlite> DELETE FROM states WHERE entity_id="sensor.cpu"; sqlite> DELETE FROM states WHERE entity_id="sensor.cpu";
``` ```
The `VACUUM` command cleans the your database. The `VACUUM` command cleans your database.
```bash ```bash
sqlite> VACUUM; sqlite> VACUUM;