aboutsummaryrefslogtreecommitdiff
path: root/src/correct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/correct.rs')
-rw-r--r--src/correct.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/correct.rs b/src/correct.rs
new file mode 100644
index 0000000..333aba5
--- /dev/null
+++ b/src/correct.rs
@@ -0,0 +1,4 @@
+// http://norvig.com/spell-correct.html
+pub fn correct(word: &str) -> Option<&str> {
+ todo!();
+}