The first part where he mentions "The distribution is skewed right" is correct. The tail on the right hand side is pulled longer than it should be, or longer compared to the left tail. "Right skew" or "skewed right" is the same as "positively skewed". They all mean the same thing.
The portion where Maurice says "This implies that the mean is less than the median" is incorrect. This is where his error is located. The reason for the error is because it should be "The mean is greater than the median" when we have right-skewed data like this.
Here's one example to see why this is the case. Consider the distribution {1,2,3,4,5}. We can see that the median is 3 since it's directly in the center. The mean is also 3 since we add up all the values and divide by 5. Symmetric data has mean = median. Now, we'll replace the '5' with something much larger to get a large outlier. Let's say we have the set {1,2,3,4,55}. The median is still 3. The outlier doesn't pull on the median. However, the mean has changed and it is (1+2+3+4+55)/5 = 65/5 = 13. The mean went from 3 to 13. Therefore, mean > median here. The mean is affected by outliers. Think of it like the outlier is pulling on the mean in a sort of magnetic way. This outlier makes the mean larger than it should be. If the outlier is extreme enough, then it sometimes makes sense to consider the trimmed mean as opposed to the regular arithmetic mean. The trimmed mean is the mean of the main cluster of values ignoring the outlier(s).
-----------------------
To recap:
If we have right skewed data, then mean > median
As you can probably guess, if we had left-skewed data, then mean < median. In symmetric data, mean = median.