upstream: https://github.com/mirage/mirage-crypto

README: update FAQ do not refer to removed modules (reported in #263 by @kit-ty-kate)

+1 -7
+1 -7
README.md
··· 39 39 If RNG fails with `Fatal error: exception Unseeded_generator`, you need to 40 40 seed it. 41 41 42 - Lwt: 43 42 ```OCaml 44 - let () = Mirage_crypto_rng_lwt.initialize (module Mirage_crypto_rng.Fortuna) 45 - ``` 46 - 47 - Unix: 48 - ```OCaml 49 - let () = Mirage_crypto_rng_unix.initialize (module Mirage_crypto_rng.Fortuna) 43 + let () = Mirage_crypto_rng_unix.use_default () 50 44 ```