]> git.proxmox.com Git - proxmox-backup.git/commitdiff
datastore/chunker: fix comment typos
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 22 Jul 2020 14:12:49 +0000 (16:12 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 22 Jul 2020 14:12:49 +0000 (16:12 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/backup/chunker.rs

index abc3ab78d90416d9b4c182b74e0f25bdebb9b9ba..712751829136072804a7f1f99fb256ca0d7d6a60 100644 (file)
@@ -5,15 +5,15 @@
 /// use hash value 0 to detect a boundary.
 const CA_CHUNKER_WINDOW_SIZE: usize = 64;
 
-/// Slinding window chunker (Buzhash)
+/// Sliding window chunker (Buzhash)
 ///
 /// This is a rewrite of *casync* chunker (cachunker.h) in rust.
 ///
 /// Hashing by cyclic polynomial (also called Buzhash) has the benefit
 /// of avoiding multiplications, using barrel shifts instead. For more
 /// information please take a look at the [Rolling
-/// Hash](https://en.wikipedia.org/wiki/Rolling_hash) artikel from
-/// wikipedia.
+/// Hash](https://en.wikipedia.org/wiki/Rolling_hash) article from
+/// Wikipedia.
 
 pub struct Chunker {
     h: u32,