Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in documentation #64

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

* BC break: Move launching logic from `Dialog` to `Launcher`
(#11)
* 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.
* 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.
* Running a single `Dialog` setup multiple times or changing settings after launching the first instance is now handled gracefully.
* Simplified `Builder` and `Dialog` constructors to no longer require a `Launcher` instance.
* Moved `Dialog::run()` to `Launcher::launch($dialog)`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ For anything more complex, you can also instantiate the below classes directly.
### Dialog

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

#### AbstractDialog

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

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

*Running on [Windows is currently not supported](https://github.com/reactphp/child-process/issues/9)*
Expand Down
2 changes: 1 addition & 1 deletion src/Dialog/NotificationDialog.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class NotificationDialog extends AbstractTextDialog
/**
* Listens for commands at standard input.
*
* At least one command must be specified. Commands are comma seperated.
* At least one command must be specified. Commands are comma separated.
* A command must be followed by a colon and a value.
*
* @param unknown $listen
Expand Down
2 changes: 1 addition & 1 deletion src/Dialog/PasswordDialog.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* there's no way to reliably tell where the username ends and the password
* starts in a string like "user|name|pass|word". Because it's common to have
* special characters in the password and usernames tend to be restricted, this
* library assumes the username ends after the first occurance:
* library assumes the username ends after the first occurrence:
* <code>
* $ret = array('user', 'name|pass|word');
* </code>
Expand Down