/// <param name="text">The result text</param>
/// <param name="startTime">The time started speaking the result text</param>
/// <param name="endTime">The time finished speaking the result text</param>
- /// <param mane="userData">The User data</param>
+ /// <param name="userData">The User data</param>
/// <returns>true to continue with the next iteration of the loop, false to break out of the loop</returns>
/// <precondition>SendResult() should be called.</precondition>
public delegate bool ResultTime(int index, TimeEvent resultEvent, string text, long startTime, long endTime, IntPtr userData);
/// <param name="language">The language is specified as an ISO 3166 alpha-2 two letter country-code
/// followed by ISO 639-1 for the two-letter language code
/// for example, "ko_KR" for Korean, "en_US" for American English</param>
- /// <param mane="userData">The User data</param>
+ /// <param name="userData">The User data</param>
/// <returns>true to continue with the next iteration of the loop, false to break out of the loop</returns>
/// <precondition>ForEachSupportedLanguages() should be called</precondition>
public delegate bool SupportedLanguages(string language, IntPtr userData);
/// 3. InvalidParameter
/// 4. OperationFailed
/// </returns>
- /// <percondition>
- /// Start should succeed</percondition>
+ /// <precondition>
+ /// Start should succeed</precondition>
/// <postcondition>
/// If the engine supports partial result, SendResult() should be invoked.</postcondition>
public abstract Error SetRecordingData(string data, uint length);
/// 3. OperationFailed
/// 4. NetworkDown
/// </returns>
- /// <percondition>
- /// Start should succeed</percondition>
+ /// <precondition>
+ /// Start should succeed</precondition>
/// <postcondition>
/// After processing of the engine, , SendResult() should be invoked.</postcondition>
public abstract Error Stop();