Bugzilla Bug 90598 spelling and minor syntactic correctness

r=zach
This commit is contained in:
timeless%mac.com 2001-12-20 18:31:56 +00:00
Родитель 4c5dccf906
Коммит f09cad0452
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -15,10 +15,10 @@ Regular expressions are a powerful way of specifying complex searches.
And that is aimed to conform to POSIX 1003.2. <B>MySQL</B> uses the extended
version.
<P>To get more exact information see Henry Spencers regex.7 manual.
<P>To get more exact information see Henry Spencer's regex.7 manual.
<P>This is a simplistic reference that skips the details. From here on
a regualr expressions is called a regexp.
a regular expression is called a regexp.
<P>A regular expression describes a set of strings. The simplest case is
one that has no special characters in it. For example the regexp <TT>hello</TT>
@ -28,7 +28,7 @@ matches <TT>hello</TT> and nothing else.
they can match more than one string. For example, the regexp <TT>hello|word</TT>
matches either the string <TT>hello</TT> or the string <TT>word</TT>.
<P>And a more comples example regexp <TT>B[an]*s</TT> matches any of the
<P>And a more complex example regexp <TT>B[an]*s</TT> matches any of the
strings <TT>Bananas</TT>, <TT>Baaaaas</TT>, <TT>Bs</TT> and all other string
starting with a <TT>B</TT> and continuing with any number of <TT>a</TT>
<TT>n</TT> and ending with a <TT>s</TT>.