aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-10-12 03:50:39 +0200
committerMattias Andrée <maandree@operamail.com>2014-10-12 03:50:39 +0200
commit3db43f5b5919ac0c4f8145200eee937daa97b603 (patch)
tree830da5dc561b0fb3dde6af8ac76febb37c169336
parentfix errors and start on a performance test (diff)
downloadalgorithms-and-data-structures-3db43f5b5919ac0c4f8145200eee937daa97b603.tar.gz
algorithms-and-data-structures-3db43f5b5919ac0c4f8145200eee937daa97b603.tar.bz2
algorithms-and-data-structures-3db43f5b5919ac0c4f8145200eee937daa97b603.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--src/algorithms/searching/MultiinterpolationSearch.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/algorithms/searching/MultiinterpolationSearch.java b/src/algorithms/searching/MultiinterpolationSearch.java
index 0a69721..37cb37f 100644
--- a/src/algorithms/searching/MultiinterpolationSearch.java
+++ b/src/algorithms/searching/MultiinterpolationSearch.java
@@ -21,7 +21,7 @@ import java.math.*;
/**
- * Multiinterpolation search class.This algorithm is exactly to
+ * Multiinterpolation search class. This algorithm is exactly to
* interpolation search as multibinary search is to binary search.
*
* This algorithm was devised by Mattias Andrée in January of 2014.