From: panPiotrek Date: Mon, 6 Aug 2018 00:43:06 +0000 (+0200) Subject: typo correction (#364) X-Git-Tag: 5.0.0.14562~133 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b365980773155dba18f63abd89d9c21d466924fe;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git typo correction (#364) there is a minor typo in the docs, catch (c# keyword) is spelled with a capital C --- diff --git a/src/Tizen.System/Device/Haptic.cs b/src/Tizen.System/Device/Haptic.cs index 5d151b3..42d86cd 100755 --- a/src/Tizen.System/Device/Haptic.cs +++ b/src/Tizen.System/Device/Haptic.cs @@ -138,7 +138,7 @@ namespace Tizen.System /// { /// vibrator.Vibrate(2000, 70); /// } - /// Catch(Exception e) + /// catch(Exception e) /// { /// } /// @@ -182,7 +182,7 @@ namespace Tizen.System /// { /// vibrator.Stop(); /// } - /// Catch(Exception e) + /// catch(Exception e) /// { /// } ///