diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2014-11-25 21:00:58 +0000 | 
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2014-11-25 21:00:58 +0000 | 
| commit | 0cac4ca3916ac24ab6139d03cbfd18db9e715bfe (patch) | |
| tree | c94307da318be46e5aeea1a325c1e91749506e4f /include/lldb/Core/RegularExpression.h | |
| parent | 03b99097822ca3ac69252d9afae716a584ed56c4 (diff) | |
Diffstat (limited to 'include/lldb/Core/RegularExpression.h')
| -rw-r--r-- | include/lldb/Core/RegularExpression.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/include/lldb/Core/RegularExpression.h b/include/lldb/Core/RegularExpression.h index c116d439b94a..8e36811fa750 100644 --- a/include/lldb/Core/RegularExpression.h +++ b/include/lldb/Core/RegularExpression.h @@ -119,7 +119,7 @@ public:      RegularExpression ();      //------------------------------------------------------------------ -    /// Constructor that takes a regulare expression with flags. +    /// Constructor that takes a regular expression with flags.      ///      /// Constructor that compiles \a re using \a flags and stores the      /// resulting compiled regular expression into this object. @@ -129,7 +129,7 @@ public:      ///     compile.      ///      /// @param[in] flags -    ///     Flags that are passed the the \c regcomp() function. +    ///     Flags that are passed to the \c regcomp() function.      //------------------------------------------------------------------      explicit      RegularExpression (const char* re, int flags); @@ -141,7 +141,7 @@ public:      //------------------------------------------------------------------      /// Destructor.      /// -    /// Any previosuly compiled regular expression contained in this +    /// Any previously compiled regular expression contained in this      /// object will be freed.      //------------------------------------------------------------------      ~RegularExpression (); @@ -154,10 +154,10 @@ public:      /// Compile a regular expression.      ///      /// Compile a regular expression using the supplied regular -    /// expression text and flags. The compied regular expression lives +    /// expression text and flags. The compiled regular expression lives      /// in this object so that it can be readily used for regular      /// expression matches. Execute() can be called after the regular -    /// expression is compiled. Any previosuly compiled regular +    /// expression is compiled. Any previously compiled regular      /// expression contained in this object will be freed.      ///      /// @param[in] re @@ -165,7 +165,7 @@ public:      ///     expression to compile.      ///      /// @param[in] flags -    ///     Flags that are passed the the \c regcomp() function. +    ///     Flags that are passed to the \c regcomp() function.      ///      /// @return      ///     \b true if the regular expression compiles successfully, | 
