From 88a4418428482dc0b02b368b8814ed4784ff87eb Mon Sep 17 00:00:00 2001 From: armilami Date: Sat, 8 Jun 2024 11:58:02 +0330 Subject: [PATCH] Fix non-English character in common-patterns.md --- docs/ch06-controls/common-patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ch06-controls/common-patterns.md b/docs/ch06-controls/common-patterns.md index 0cc686d8..740ee6b7 100644 --- a/docs/ch06-controls/common-patterns.md +++ b/docs/ch06-controls/common-patterns.md @@ -50,7 +50,7 @@ The home page, `Home.qml` consists of a `Page`, which is n control element that <<< @/docs/ch06-controls/src/interface-stack/Home.qml -Returning to `main.qml`, we now look at the drawer part. This is where the navigation to the pages begin. The active parts of the user interface are the `ÌtemDelegate` items. In the `onClicked` handler, the next page is pushed onto the `stackView`. +Returning to `main.qml`, we now look at the drawer part. This is where the navigation to the pages begin. The active parts of the user interface are the `ItemDelegate` items. In the `onClicked` handler, the next page is pushed onto the `stackView`. As shown in the code below, it is possible to push either a `Component` or a reference to a specific QML file. Either way results in a new instance being created and pushed onto the stack.