From 65018d03f08f64e1dded12ad2cf11ff5066b71ca Mon Sep 17 00:00:00 2001 From: Tobias Hienzsch Date: Tue, 19 May 2020 18:28:27 +0200 Subject: [PATCH] Fix type on Why Juce page --- chapters/getting_started/why_juce.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/getting_started/why_juce.md b/chapters/getting_started/why_juce.md index 29782a7..960127f 100644 --- a/chapters/getting_started/why_juce.md +++ b/chapters/getting_started/why_juce.md @@ -2,7 +2,7 @@ ## Features -Long story short, JUCE is a library which solves many common problems a developer might face during the creation of any kind of application. It hides away a lot of complexity, which normally is not very fun to work with. This includes cross platform window creation, file I/O, networking and so on. JUCE also comes with a collection of user interface widgets, such as buttons, combo boxes, menus, tabbed views and many more. A complete list can be found in the [JUCE documentation](https://docs.juce.com/master/index.html#tag_gui). `Components` as they are called in JUCE form the basis of all user interaction in a JUCE application. The appearance is easily customizable. If the ones provided by JUCE don't fit your needs you can also create your own, just create subclass from the `Compoent` you want to customize and of you go. +Long story short, JUCE is a library which solves many common problems a developer might face during the creation of any kind of application. It hides away a lot of complexity, which normally is not very fun to work with. This includes cross platform window creation, file I/O, networking and so on. JUCE also comes with a collection of user interface widgets, such as buttons, combo boxes, menus, tabbed views and many more. A complete list can be found in the [JUCE documentation](https://docs.juce.com/master/index.html#tag_gui). `Components` as they are called in JUCE form the basis of all user interaction in a JUCE application. The appearance is easily customizable. If the ones provided by JUCE don't fit your needs you can also create your own, just create subclass from the `[juce::Component](https://docs.juce.com/master/classComponent.html)` you want to customize and of you go. ### Audio