]> Pileus Git - ~andy/linux/blobdiff - Documentation/rt-mutex-design.txt
random32: assign to network folks in MAINTAINERS
[~andy/linux] / Documentation / rt-mutex-design.txt
index a5bcd7f5c33fb4d1d818c35b2044b0382179d013..8666070d31896eeb0c54f820189b14d95bd1833d 100644 (file)
@@ -30,7 +30,7 @@ is something called unbounded priority inversion.  That is when the high
 priority process is prevented from running by a lower priority process for
 an undetermined amount of time.
 
-The classic example of unbounded priority inversion is were you have three
+The classic example of unbounded priority inversion is where you have three
 processes, let's call them processes A, B, and C, where A is the highest
 priority process, C is the lowest, and B is in between. A tries to grab a lock
 that C owns and must wait and lets C run to release the lock. But in the