On 2013-09-17 11:38:59, SREZIC wrote:
Show quoted text> Minor nit: the second construction example in the Pod's SYNOPSIS does
> not have quotes:
>
> path => /tmp/sem_file,
>
Patch attached.
diff --git a/lib/IPC/Semaphore/Concurrency.pm b/lib/IPC/Semaphore/Concurrency.pm
index 26599dd..4a73b87 100644
--- a/lib/IPC/Semaphore/Concurrency.pm
+++ b/lib/IPC/Semaphore/Concurrency.pm
@@ -201,7 +201,7 @@ IPC::Semaphore::Concurrency - Concurrency guard using semaphores
my $c = IPC::Semaphore::Concurrency->new(
- path => /tmp/sem_file,
+ path => '/tmp/sem_file',
count => 2,
value => $sem_max,
);