Skip to content
This repository was archived by the owner on Jan 4, 2018. It is now read-only.

Commit 96f7be1

Browse files
committed
Code fix
1 parent 020bd43 commit 96f7be1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GettingStarted.md renamed to GettingStarted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ By default the MessageBar is accessble through `MessageBarManager.SharedInstance
88
You can show messages by calling `ShowMessage` method.
99

1010
//Show message from Shared instance, with the title and description
11-
MessageBarManager.SharedInstance.ShowMessage ("Success", "This is success", MessageType.Success))
11+
MessageBarManager.SharedInstance.ShowMessage ("Success", "This is success", MessageType.Success)
1212

1313
Show messages with callback:
1414

1515
//Provide callback to execute on dismiss
1616
MessageBarManager.SharedInstance.ShowMessage ("Info", "This is information", MessageType.Info,
17-
() => Console.WriteLine ("This is callback!")))
17+
() => Console.WriteLine ("This is callback!"))
1818
1919

2020
###Customisation

0 commit comments

Comments
 (0)