From b365980773155dba18f63abd89d9c21d466924fe Mon Sep 17 00:00:00 2001 From: panPiotrek Date: Mon, 6 Aug 2018 02:43:06 +0200 Subject: [PATCH] typo correction (#364) there is a minor typo in the docs, catch (c# keyword) is spelled with a capital C --- src/Tizen.System/Device/Haptic.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) /// { /// } /// -- 2.7.4