diff --git a/doc/1_KC3/1.25_Facts.en.md b/doc/1_KC3/1.25_Facts.en.md
index 6dcaaa0..7ebf95e 100644
--- a/doc/1_KC3/1.25_Facts.en.md
+++ b/doc/1_KC3/1.25_Facts.en.md
@@ -54,6 +54,16 @@ ikc3> puts("#{inspect(sym)} #{inspect(op)}")
ikc3> })
```
+The config module from an HTTPd instance has an example of
+persistence, this way the database is loaded when the module is loaded :
+
+```elixir
+defmodule Config do
+ def db = Facts.database()
+ Facts.open(db, "db/app.facts")
+end
+```
+
---
Top : [KC3 documentation](/doc/)