Skip to content

Commit 2df4f9d

Browse files
authored
Merge pull request #64 from yadaiio/typos
Fix typos in documentation
2 parents 824a0a4 + d4a9de4 commit 2df4f9d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
* BC break: Move launching logic from `Dialog` to `Launcher`
7070
(#11)
71-
* The `Dialog` now reprents the dialog option setup, the `Launcher` represents a running instance (process) of the given dialog setup. Clear distinction between setup and the actual process.
71+
* The `Dialog` now represents the dialog option setup, the `Launcher` represents a running instance (process) of the given dialog setup. Clear distinction between setup and the actual process.
7272
* Running a single `Dialog` setup multiple times or changing settings after launching the first instance is now handled gracefully.
7373
* Simplified `Builder` and `Dialog` constructors to no longer require a `Launcher` instance.
7474
* Moved `Dialog::run()` to `Launcher::launch($dialog)`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ For anything more complex, you can also instantiate the below classes directly.
172172
### Dialog
173173

174174
The `Dialog` API is modelled closely after Zenity's command line API, so it should be
175-
familar if you're already using it from within any other command line script.
175+
familiar if you're already using it from within any other command line script.
176176

177177
#### AbstractDialog
178178

@@ -317,7 +317,7 @@ On Debian- and Ubuntu-based distributions you can make sure it's installed like
317317
$ sudo apt-get install zenity
318318
```
319319

320-
Otherwise you may have to install Zenity yourself (use your favorite search engine, download the appropriate realease tarball or compile from soure).
320+
Otherwise you may have to install Zenity yourself (use your favorite search engine, download the appropriate release tarball or compile from source).
321321
Zenity it not officially supported on other platforms, however several non-official releases exist.
322322

323323
*Running on [Windows is currently not supported](https://github.com/reactphp/child-process/issues/9)*

src/Dialog/NotificationDialog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class NotificationDialog extends AbstractTextDialog
1717
/**
1818
* Listens for commands at standard input.
1919
*
20-
* At least one command must be specified. Commands are comma seperated.
20+
* At least one command must be specified. Commands are comma separated.
2121
* A command must be followed by a colon and a value.
2222
*
2323
* @param unknown $listen

src/Dialog/PasswordDialog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* there's no way to reliably tell where the username ends and the password
2222
* starts in a string like "user|name|pass|word". Because it's common to have
2323
* special characters in the password and usernames tend to be restricted, this
24-
* library assumes the username ends after the first occurance:
24+
* library assumes the username ends after the first occurrence:
2525
* <code>
2626
* $ret = array('user', 'name|pass|word');
2727
* </code>

0 commit comments

Comments
 (0)