Skip to content

Commit 90546dd

Browse files
CopilotHexagon
andauthored
Update lume/lumocs to latest versions and fix documentation typos (#73)
* Fix typos in documentation (about, within, specified, built-in, webinterface) Co-authored-by: Hexagon <419737+Hexagon@users.noreply.github.com> --------- Co-authored-by: Hexagon <hexagon@56k.guru> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Hexagon <419737+Hexagon@users.noreply.github.com>
1 parent 439c10a commit 90546dd

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ _For detailed documentation, visit [pup.56k.guru](https://pup.56k.guru)._
1717
your own plugins to add additional features and integrations tailored to your needs.
1818
- **Process Telemetry and IPC:** Gain deeper insights into managed processes by gathering telemetry data, such as memory usage, from Deno client processes. Supports inter-process communication for
1919
connected processes to interact with each other.
20-
- **Rest API:** Control and monitor Pup from third party solutions using the build in Rest API.
20+
- **Rest API:** Control and monitor Pup from third party solutions using the built-in Rest API.
2121

2222
> **Note**: Programmatic usage, process telemetry, and IPC are currently available only when running Deno client processes.
2323
@@ -87,7 +87,7 @@ Full examples available at [/docs/src/examples](/docs/src/examples)
8787
- `canary`: The canary channel provides the most up-to-date and cutting-edge versions of Pup. It includes the latest changes and may not be as stable as the other channels. It is primarily intended
8888
for developers and early adopters who want to stay on the bleeding edge of Pup's development. Based on the current state of the `dev` repo of the github repository.
8989

90-
> **Note** Built-in plugins, such as splunk-hec and webinterace does not work with canary versions right now.
90+
> **Note** Built-in plugins, such as splunk-hec and webinterface do not work with canary versions right now.
9191
9292
Each channel serves different purposes, so choose the one that best fits your needs and requirements.
9393

docs/src/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This release marks the initial stable release of Pup - a powerful universal proc
4444
your own plugins to add additional features and integrations tailored to your needs.
4545
- **Process Telemetry and IPC:** Gain deeper insights into managed processes by gathering telemetry data, such as memory usage, from Deno client processes. Supports inter-process communication for
4646
connected processes to interact with each other.
47-
- **Rest API:** Control and monitor Pup from third party solutions using the build in Rest API.
47+
- **Rest API:** Control and monitor Pup from third party solutions using the built-in Rest API.
4848

4949
_For detailed documentation, visit [pup.56k.guru](https://pup.56k.guru)._
5050

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pup is a powerful universal process manager developed with Deno, designed to kee
1717
- **Plugins:** Extend Pup's functionality with custom plugins for additional features and integrations.
1818
- **Process Telemetry and IPC:** Pup can gather telemetry data from Deno client processes, such as memory usage and current working directory, providing deeper insights into managed processes. The
1919
telemetry feature also enables inter-process communication, allowing connected processes to interact with one another.
20-
- **Rest API:** Control and monitor Pup from third party solutions using the build in Rest API.
20+
- **Rest API:** Control and monitor Pup from third party solutions using the built-in Rest API.
2121

2222
> **Note** Programmatic usage, process telemetry, and IPC are currently available only when running Deno client processes. { .note }
2323
@@ -34,7 +34,7 @@ To install Pup, make sure you run the latest version of Deno (`deno upgrade`), t
3434
deno run -Ar jsr:@pup/pup setup
3535
```
3636

37-
This command downloads the latest version of Pup and installs it on your system. Read more abour release channels [here](https://pup.56k.guru/installation/#release-channels).
37+
This command downloads the latest version of Pup and installs it on your system. Read more about release channels [here](https://pup.56k.guru/installation/#release-channels).
3838

3939
### Configuration and Usage
4040

@@ -74,6 +74,6 @@ To keep a process alive temporary, use `pup run` with `--cmd` and a start policy
7474

7575
**Restarting a process on filesystem changes**
7676

77-
To restart if any file changes withing the current directory, add `--watch <watched-path>`:
77+
To restart if any file changes within the current directory, add `--watch <watched-path>`:
7878

7979
`pup run --autostart --cmd "deno run server.ts" --watch .`

docs/src/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The `upgrade` command support the following parameters:
4343
implications. It's important to note that this setting is exclusive to Pup; every child process initiated retains its own distinct permissions as configured, respecting their individual least
4444
privilege settings.
4545
- `--unsafely-ignore-certificate-errors[=list,of,hosts]`: **Should almost never be used, and certainly not in production.** This parameter is passed along to Deno as-is, and makes Pup and all Deno
46-
subprocess ignore certificate errors. Has to be speficied on both setup and upgrade. It is better to pass this parameter to selected processes using the command in `pup.json` if you really need it.
46+
subprocess ignore certificate errors. Has to be specified on both setup and upgrade. It is better to pass this parameter to selected processes using the command in `pup.json` if you really need it.
4747

4848
The upgrader will check if your currently installed version of Deno is compatible with Pup and suggest an upgrade if necessary.
4949

@@ -62,7 +62,7 @@ The available channels are:
6262
- `canary`: The canary channel provides the most up-to-date and cutting-edge versions of Pup. It includes the latest changes and may not be as stable as the other channels. It is primarily intended
6363
for developers and early adopters who want to stay on the bleeding edge of Pup's development. Based on the current state of the `dev` repo of the github repository.
6464

65-
> **Note** Built-in plugins, such as splunk-hec and webinterace does not work with canary versions right now.
65+
> **Note** Built-in plugins, such as splunk-hec and webinterface do not work with canary versions right now.
6666
6767
Each channel serves different purposes, so choose the one that best fits your needs and requirements.
6868

docs/src/usage/service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ This will start a Docker container named my-pup-container using the my-pup-image
120120
### Installing a systemd user service
121121

122122
Systemd is a system and service manager for Linux. It provides a way to manage system services and daemons. As Deno and Pup are installed per-user, we will make use of the systemd user mode, which
123-
will keep all configuration withing your home directory.
123+
will keep all configuration within your home directory.
124124

125125
### Steps
126126

@@ -204,7 +204,7 @@ systemctl --user enable pup
204204
## Manual guide using launchd
205205

206206
Launchd is a system and service manager for macOS. It provides a way to manage system services and daemons. As Deno and Pup are installed per-user, we will make use of the launchd user mode, which
207-
will keep all configuration withing your home directory, and avoid any need for root privileges.
207+
will keep all configuration within your home directory, and avoid any need for root privileges.
208208

209209
### Steps
210210

0 commit comments

Comments
 (0)