Clarified wording

This commit is contained in:
Joshua Boniface 2016-09-29 13:22:41 -04:00
parent 2f33c153e2
commit 3d4acb0855
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ It is a common technique to provide **resiliency** and **availability** to a set
The simplest type of RAID is a 'mirror', which does just what it sounds like: keeps two (or more) copies of data on two (or more) different disks. If one disk fails, the second copy is still available and no data loss has occurred.
There also exist more advanced modes, the most common of which is called RAID-5, and consists of 3 or more disks with data stripped (written sequentially) across the disks.
There also exist more advanced modes, the most common of which is called RAID-5, and consists of 3 or more disks with data stripped (written sequentially), along with parity information, across the disks.
The [Wikipedia page for RAID](http://en.wikipedia.org/wiki/RAID) provides some helpful information about the history and bennefits of the various RAID implementations.