Skip to content

Commit 757904d

Browse files
committed
fix spelling
1 parent 092d1b9 commit 757904d

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

druid/examples/readme.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
There are several different kind of examples, some demonstrate one particular
44
Druid concept, some are tools used for testing and debugging, and
55
others are more complete examples of how to tie everything together.
6-
The later are listed separately under [showcases](##Showcases).
6+
The latter are listed separately under [showcases](##Showcases).
77

88
## Anim
99
```
@@ -24,7 +24,7 @@ cargo run --example blocking_functions
2424
Sometimes you need to fetch some data from disk or from the internet,
2525
but you should never block the UI thread with long running operations!
2626
Instead you should run this task in a separate thread, and have it send
27-
you the data as it arrives. This is very similair to [async event](##Async Event)
27+
you the data as it arrives. This is very similar to [async event](##Async Event)
2828
except the event is initiated by the main thread.
2929

3030
## Cursor
@@ -64,13 +64,13 @@ This is an example of how to get almost any druid application can be used on the
6464
```
6565
cargo run --example identity
6666
```
67-
In druid identity is used to send specific widgets commands. Instead of a command going to all the widgets, you can send them to just the one you need. This example has some colorwels and some buttons that interact with them. All of them are identical, except the identity, which makes it possible for the buttons to only affect a single colorwel.
67+
In druid identity is used to send specific widgets commands. Instead of a command going to all the widgets, you can send them to just the one you need. This example has some colorwells and some buttons that interact with them. All of them are identical, except the identity, which makes it possible for the buttons to only affect a single colorwell.
6868

6969
## Invalidation
7070
```
7171
cargo run --example invalidation --features="im"
7272
```
73-
A demonstration how to use debug invalidation regeons in your own widgets, including some examples of builtin widgets.
73+
A demonstration how to use debug invalidation regions in your own widgets, including some examples of builtin widgets.
7474

7575
## Layout
7676
```
@@ -90,7 +90,7 @@ cargo run --example list --features="im"
9090
```
9191
This shows you how you could, for example, add items to lists and delete them.
9292

93-
## Multiwine
93+
## Multiple Windows
9494
```
9595
cargo run --example multiwin
9696
```
@@ -106,13 +106,13 @@ Opening and saving files is crucial for a lot of applications. This shows you ho
106106
```
107107
cargo run --example panels
108108
```
109-
Very similair to [layout](##Layout) but it splits the screen into 2 segments
109+
Very similar to [layout](##Layout) but it splits the screen into 2 segments
110110

111111
## Parse
112112
```
113113
cargo run --example parse
114114
```
115-
Druid doesnt have numeric specific texboxes, instead you have to parse the input as if it ware a numeric value.
115+
Druid doesnt have numeric specific texboxes, instead you have to parse the input as if it were a numeric value.
116116

117117
## Scroll
118118
```
@@ -130,7 +130,7 @@ An example of how to split a widget in 2 in various ways. This also includes hav
130130
```
131131
cargo run --example styled_text
132132
```
133-
Not all text should look the same. You are able to change a lot of things, color, size, and monospace. This example shows how ot change these propperties.
133+
Not all text should look the same. You are able to change a lot of things, color, size, and monospace. This example shows how to change these propperties.
134134

135135
## Svg
136136
```
@@ -142,13 +142,13 @@ This shows you how to display an SVG as a widget.
142142
```
143143
cargo run --example switches
144144
```
145-
Switches are usefullin many ways, this example shows how to use the druid built-in ones. This includes on/off and up/down for incrementing numeric values.
145+
Switches are useful in many ways, this example shows how to use the druid built-in ones. This includes on/off and up/down for incrementing numeric values.
146146

147147
## Tabs
148148
```
149149
cargo run --example tabs
150150
```
151-
Tabs allow you to seperate diferent portions of the UI. This example shows you how to use them in druid. Similair to [view switcher](##View Switcher) but with with a diferent purpose.
151+
Tabs allow you to seperate different portions of the UI. This example shows you how to use them in druid. similar to [view switcher](##View Switcher) but with with a different purpose.
152152

153153
## Timers
154154
```
@@ -160,7 +160,7 @@ Timers allow you to send events to your widgets at a certain points inthe future
160160
```
161161
cargo run --example view_switcher
162162
```
163-
Very smilair to [tabs](##Tabs) but this allows you to have more controll over it. This allows you to switch out widgets on the fly.
163+
Very similar to [tabs](##Tabs) but this allows you to have more control over it. This allows you to switch out widgets on the fly.
164164

165165
## Showcases
166166

@@ -169,7 +169,7 @@ Very smilair to [tabs](##Tabs) but this allows you to have more controll over it
169169
cargo run --example calc
170170
```
171171

172-
This is a showcase of a simple calculator. There are better ways to implement the calculator logic, but it provides all the standard operations like adition devision multiplication C and CE.
172+
This is a showcase of a simple calculator. There are better ways to implement the calculator logic, but it provides all the standard operations like addition division multiplication C and CE.
173173

174174
### Event Viewer
175175
```
@@ -190,16 +190,16 @@ Flex shows off all the things you can do with flex elements. You can play with a
190190
cargo run --example game_of_life
191191
```
192192

193-
A simple implementation of conway's game of life. You can change the evolution speed, and pauze so you can take your time making your own creations!
193+
A simple implementation of Conway's game of life. You can change the evolution speed, and pauze so you can take your time making your own creations!
194194

195195
### Image
196196
```
197197
cargo run --example image
198198
```
199199

200-
Image shows off all the knobs you can turn on images. You can play with them with real time results, which you to fogure out what settings are best for you.
200+
Image shows off all the knobs you can turn on images. You can play with them with real time results, which you to figure out what settings are best for you.
201201

202-
Please note that the image is exported with some kind of interpolation. So even when you turn interpolation off/NearestNeighbor in druid, you will still see this because thats how the image actually looks.
202+
Please note that the image is exported with some kind of interpolation. So even when you turn interpolation off/NearestNeighbor in druid, you will still see this because that's how the image actually looks.
203203

204204
### Scroll Colors
205205
```

0 commit comments

Comments
 (0)