Skip to content

Commit 956e47e

Browse files
authored
docs: fix typos (#239)
1 parent 408bec3 commit 956e47e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

website/docs/guides/handle-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Renderer.render(<App />);
9090
In a nutshell, the above code uses the `useEventHandler` hook which is a wrapper over `useMemo`.
9191
This means, the buttonHandler remains same on every render call and hence the `on` prop to Button doesnt change.
9292

93-
Here `objectNameChanged` is a QEvent while `clicked` and `pressed` are signals. As an app developer it really doesnt mean much but internally they are both two different things in Qt and React NodeGui allows you to use both of them using a single familar `on` prop.
93+
Here `objectNameChanged` is a QEvent while `clicked` and `pressed` are signals. As an app developer it really doesnt mean much but internally they are both two different things in Qt and React NodeGui allows you to use both of them using a single familiar `on` prop.
9494

9595
Also, another point you see in this typescript code is the QPushButtonSignals. The QPushButtonSignals is a type that allows autocompletion of event handlers as you type them.
9696

website/docs/guides/styling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Since we are not running inside a web browser, there are few differences in the
178178

179179
The complete list is detailed here: https://doc.qt.io/qt-5/stylesheet-reference.html#list-of-properties
180180

181-
Apart from the properties listed in the link, NodeGui also supports layout properties related to Flex. You can use all flex properties such as align-items, justify-content, flex, etc on all components. [The layout styling will be coverted in more detail in the section: Layout.](layout.md)
181+
Apart from the properties listed in the link, NodeGui also supports layout properties related to Flex. You can use all flex properties such as align-items, justify-content, flex, etc on all components. [The layout styling will be converted in more detail in the section: Layout.](layout.md)
182182

183183
## Advanced usage (Setting QObject Properties)
184184

website/src/components/CodeExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const CodeExample = () => {
2626
</p>
2727

2828
<p>
29-
With NodeGui you get flexibility of web and perfromance of Native
29+
With NodeGui you get flexibility of web and performance of Native
3030
desktop apps.
3131
</p>
3232
</div>

0 commit comments

Comments
 (0)