Spelling fixes.

This commit is contained in:
Ville Skyttä 2009-01-10 21:08:39 +02:00
parent e783e088a1
commit 1445d43b49

6
README
View File

@ -415,9 +415,9 @@ guidelines in mind:
enable you to avoid the use of external programs, which are
expensive to fork and execute, so do make full use of those:
?(pattern-list) - match zero or one occurences of patterns
*(pattern-list) - match zero or more occurences of patterns
+(pattern-list) - match one or more occurences of patterns
?(pattern-list) - match zero or one occurrences of patterns
*(pattern-list) - match zero or more occurrences of patterns
+(pattern-list) - match one or more occurrences of patterns
@(pattern-list) - match exactly one of the given patterns
!(pattern-list) - match anything except one of the given patterns