typo correction (#364)
authorpanPiotrek <piotr.nowacki@onet.pl>
Mon, 6 Aug 2018 00:43:06 +0000 (02:43 +0200)
committerWonYoung Choi <wy80.choi@samsung.com>
Mon, 6 Aug 2018 00:43:06 +0000 (09:43 +0900)
there is a minor typo in the docs, catch (c# keyword) is spelled with a capital C

src/Tizen.System/Device/Haptic.cs

index 5d151b3..42d86cd 100755 (executable)
@@ -138,7 +138,7 @@ namespace Tizen.System
         ///     {
         ///         vibrator.Vibrate(2000, 70);
         ///     }
-        ///     Catch(Exception e)
+        ///     catch(Exception e)
         ///     {
         ///     }
         /// </code>
@@ -182,7 +182,7 @@ namespace Tizen.System
         ///     {
         ///         vibrator.Stop();
         ///     }
-        ///     Catch(Exception e)
+        ///     catch(Exception e)
         ///     {
         ///     }
         /// </code>