From 67a7302595dd8c5df641d4c8585803d521b81d7f Mon Sep 17 00:00:00 2001 From: Vincent Mathis <33002126+vincentmathis@users.noreply.github.com> Date: Tue, 24 Mar 2020 17:04:59 +0100 Subject: [PATCH] Fixed a broken url to native widgets (#464) --- website/docs/guides/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/guides/tutorial.md b/website/docs/guides/tutorial.md index 80672e6fe..00e571de8 100644 --- a/website/docs/guides/tutorial.md +++ b/website/docs/guides/tutorial.md @@ -64,7 +64,7 @@ npm start ## What else other than a basic window? NodeGui has support for basic widgets like QWidget (similar to div), QCheckBox, QPushButton and many more. -You can take a look at the list of native widgets that NodeGui currently supports here : [Native widgets in NodeGui](/docs/api/QWidget). +You can take a look at the list of native widgets that NodeGui currently supports here : [Native widgets in NodeGui](/docs/api/generated/classes/qwidget). With time more widgets and APIs will be added to NodeGui. Apart from modules in NodeGui, you also have access to the entire node modules ecosystem. Thus, any node module that you can use with Node.js, can be used with NodeGui. This makes it extremely powerful. Fine, I want something more custom and beautiful than just native looking widgets. What do I do?