Browse Source

Fix link and styling of Toplevel (#1218)

* Fix typo in TopLevel article link

An extra `(` was causing the markdown link not to render.

* match link styling
Ryan Yandle 4 years ago
parent
commit
c18cf2efd6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docfx/articles/overview.md

+ 1 - 1
docfx/articles/overview.md

@@ -44,7 +44,7 @@ In the example above, you can see that we have initialized the runtime by callin
 [`Init`](../api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Init) method in the Application class - this sets up the environment, initializes the color
 [`Init`](../api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Init) method in the Application class - this sets up the environment, initializes the color
 schemes available for your application and clears the screen to start your application.
 schemes available for your application and clears the screen to start your application.
 
 
-The [`Application`](../api/Terminal.Gui/Terminal.Gui.Application.html) class, additionally creates an instance of the [Toplevel]((../api/Terminal.Gui/Terminal.Gui.Toplevel.html) class that is ready to be consumed, 
+The [`Application`](../api/Terminal.Gui/Terminal.Gui.Application.html) class, additionally creates an instance of the [`Toplevel`](../api/Terminal.Gui/Terminal.Gui.Toplevel.html) class that is ready to be consumed, 
 this instance is available in the `Application.Top` property, and can be used like this:
 this instance is available in the `Application.Top` property, and can be used like this:
 
 
 ```csharp
 ```csharp