summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInkyun Kil <inkyun.kil@samsung.com>2017-05-08 13:32:32 +0900
committerInkyun Kil <inkyun.kil@samsung.com>2017-05-08 13:32:57 +0900
commitfbdbac3851784b09692e672d04c4378e558e3304 (patch)
treee1c56059f79bafb7d893b45afe75c997665afedf
parent7daf54ced28e61b4ebc6ead36796b161834cbc61 (diff)
downloadapplication-fbdbac3851784b09692e672d04c4378e558e3304.tar.gz
application-fbdbac3851784b09692e672d04c4378e558e3304.tar.bz2
application-fbdbac3851784b09692e672d04c4378e558e3304.zip
Fix typo errors
Change-Id: I6911f29f186e8d730efd116fcb5d1747f7278cf9 Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
-rwxr-xr-xTizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs b/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs
index 266052e..117bfbf 100755
--- a/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs
+++ b/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs
@@ -125,7 +125,7 @@ namespace Tizen.Applications
/// The actual interval is calculated by the OS. The minimum value is 600sec</param>
/// <param name="appControl"> The destination AppControl to perform a specific task when the alarm is triggered </param>
/// <returns>Alarm Instance created with the set param values.</returns>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>
@@ -151,7 +151,7 @@ namespace Tizen.Applications
/// <param name="delay"> The amount of time before the execution (in seconds) </param>
/// <param name="appControl"> The destination AppControl to perform a specific task when the alarm is triggered </param>
/// <returns> Alarm Instance created with the set param values.</returns>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>
@@ -177,7 +177,7 @@ namespace Tizen.Applications
/// <param name="appControl"> The destination AppControl to perform specific work when the alarm is triggered </param>
/// <returns> Alarm Instance created with the set param values.</returns>
/// <remarks>This operation is permitted wit UI application appcontrol only.</remarks>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>
@@ -207,7 +207,7 @@ namespace Tizen.Applications
/// <param name="weekFlag"> The day of the week, AlarmWeekFlag may be a combination of days, like AlarmWeekFlag.Sunday | AlarmWeekFlag.Monday</param>
/// <param name="appControl"> The destination AppControl to perform specific work when the alarm is triggered </param>
/// <returns> Alarm Instance created with the set param values.</returns>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>
@@ -233,7 +233,7 @@ namespace Tizen.Applications
/// <param name="dateTime"> The first active alarm time </param>
/// <param name="notification"> The notification to be posted when the alarm is triggered </param>
/// <returns> Alarm Instance created with the set param values.</returns>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>
@@ -259,11 +259,11 @@ namespace Tizen.Applications
/// Sets an alarm to be triggered periodically, starting at a specific time.
/// The date describes the time of the first occurrence.
/// </summary>
- /// <param name="delay">The amount of time before the first execution (in seconds).</param>
- /// <param name="period"> The amount of time between subsequent alarms (in seconds). This value does not guarantee the accuracy.
+ /// <param name="delay">The amount of time before the first execution (in seconds). </param>
+ /// <param name="period"> The amount of time between subsequent alarms (in seconds). This value does not guarantee the accuracy. </param>
/// <param name="notification"> The notification to be posted when the alarm is triggered </param>
/// <returns> Alarm Instance created with the set param values.</returns>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>
@@ -287,13 +287,13 @@ namespace Tizen.Applications
/// <summary>
/// Sets an alarm to be triggered periodically, starting at a specific time.
/// The date describes the time of the first occurrence.
- /// </summary
+ /// </summary>
/// <param name="dateTime"> The first active alarm time </param>
/// <param name="weekFlag"> The day of the week, AlarmWeekFlag may be a combination of days,
/// like AlarmWeekFlag.Sunday | AlarmWeekFlag.Monday</param>
/// <param name="notification"> The notification to be posted when the alarm is triggered </param>
/// <returns> Alarm Instance created with the set param values.</returns>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>
@@ -322,7 +322,7 @@ namespace Tizen.Applications
/// <param name="delay">The amount of time before the first execution (in seconds).</param>
/// <param name="notification"> The notification to be posted when the alarm is triggered </param>
/// <returns> Alarm Instance created with the set param values.</returns>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parmaeter.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
/// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/alarm.set</privilege>