diff --git a/lectures/20_hash_tables_I/README.md b/lectures/20_hash_tables_I/README.md
index fc11993..897672e 100644
--- a/lectures/20_hash_tables_I/README.md
+++ b/lectures/20_hash_tables_I/README.md
@@ -202,8 +202,7 @@ location is sought in order to store the new value (or pair).
```console
(i+1)%N, (i+2*2)%N, (i+3*3)%N, (i+4*4)%N, ...
```
-More generally, the j
-th “probe” of the table is (i + c1j + c2j2) mod N where c1 and c2 are constants.
+More generally, the jth “probe” of the table is (i + c1j + c2j2) mod N where c1 and c2 are constants.
– Secondary hashing: when a collision occurs a second hash function is applied to compute a new table
location. This is repeated until an empty location is found.