summaryrefslogtreecommitdiff
path: root/content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md
diff options
context:
space:
mode:
authorPaul Buetow <git@mx.buetow.org>2021-05-15 18:38:09 +0100
committerPaul Buetow <git@mx.buetow.org>2021-05-21 05:11:05 +0100
commitaaea51bbbee9d3f1e2719e4186e28a1193c03789 (patch)
treeb9d987f98d070b0d17f84d406f56d53083fe372c /content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md
parent5c95039b5b4a93631977d9260a3e6f1e2c899c57 (diff)
some typos
Diffstat (limited to 'content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md')
-rw-r--r--content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md b/content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md
index e23c2b8..e47f407 100644
--- a/content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md
+++ b/content/md/gemfeed/2011-05-07-perl-daemon-service-framework.md
@@ -72,7 +72,7 @@ daemon.wd=./
## Example
-So lets start the daemon with a loop interval of 10 seconds:
+So let's start the daemon with a loop interval of 10 seconds:
```
$ ./control keys | grep daemon.loopinterval
@@ -138,7 +138,7 @@ sub do ($) {
### Your own module
-Want to give it some better use? It's just a easy as:
+Want to give it some better use? It's just as easy as:
```
cd ./lib/PerlDaemonModules/
@@ -148,7 +148,7 @@ Want to give it some better use? It's just a easy as:
./bin/perldaemon restart (or shortcurt ./control restart)
```
-Now watch `./log/perldaemon.log` closely. It is a good practise to test your modules in 'foreground mode' (see above how to do that).
+Now watch `./log/perldaemon.log` closely. It is a good practice to test your modules in 'foreground mode' (see above how to do that).
BTW: You can install as many modules within the same instance as desired. But they are run in sequential order (in future they can also run in parallel using several threads or processes).