diff --git a/README.md b/README.md index 0b04055..17b2d0d 100644 --- a/README.md +++ b/README.md @@ -94,3 +94,13 @@ Provide a path to your own deck and start practicing. On the first run, the app will create a complimentary review file following a convention `.review.yaml` to keep track of the state. + +## Thanks + +The app is using an implementation of SM2 by @VienDinhCom. + +The package is copied into [./src/supermemo](./src/supermemo) with the intention +of modifying it into SM2+ as described in the article by BlueRaja +[here][sm2plus]. + +[sm2plus]: https://www.blueraja.com/blog/477/a-better-spaced-repetition-learning-algorithm-sm2 diff --git a/src/supermemo/mod.ts b/src/supermemo/mod.ts index 86a3e42..a170c6d 100644 --- a/src/supermemo/mod.ts +++ b/src/supermemo/mod.ts @@ -1,8 +1 @@ -/** - * A fork of SM2 implementation from https://github.com/VienDinhCom/supermemo - * with the intention of modifying it into SM2+ as described below: - * https://www.blueraja.com/blog/477/a-better-spaced-repetition-learning-algorithm-sm2 - * - * @module - */ export * from "./supermemo.ts";