]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - include/linux/seqlock.h
Various typo fixes.
[mirror_ubuntu-artful-kernel.git] / include / linux / seqlock.h
index 6b0648cfdffcf869ee59784db66e81ae8991a382..52c9eb9b6df2b15af03ac0dc8a618bf0ad72e93a 100644 (file)
@@ -2,7 +2,7 @@
 #define __LINUX_SEQLOCK_H
 /*
  * Reader/writer consistent mechanism without starving writers. This type of
- * lock for data where the reader wants a consitent set of information
+ * lock for data where the reader wants a consistent set of information
  * and is willing to retry if the information changes.  Readers never
  * block but they may have to retry if a writer is in
  * progress. Writers do not wait for readers.