summaryrefslogtreecommitdiff
path: root/games/pom
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2009-12-31 13:02:09 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2009-12-31 13:02:09 +0000
commitc66b4de2db9e6e60a1ee0f6a928c9c78fd9366e8 (patch)
treeaf6b8bd9afdf5447f044fb4ee7d1e813d8e2748a /games/pom
parent3245c42370da1774768a627d552b060246dc1a4c (diff)
remove superfluous bracket level from time representation.
ok jmc@
Diffstat (limited to 'games/pom')
-rw-r--r--games/pom/pom.612
-rw-r--r--games/pom/pom.c4
2 files changed, 8 insertions, 8 deletions
diff --git a/games/pom/pom.6 b/games/pom/pom.6
index 32b859d86b7..06a1c6755ef 100644
--- a/games/pom/pom.6
+++ b/games/pom/pom.6
@@ -1,4 +1,4 @@
-.\" $OpenBSD: pom.6,v 1.8 2007/05/31 19:19:18 jmc Exp $
+.\" $OpenBSD: pom.6,v 1.9 2009/12/31 13:02:08 sobrado Exp $
.\"
.\" Copyright (c) 1989, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
.\"
.\" @(#)pom.6 8.1 (Berkeley) 5/31/93
.\"
-.Dd $Mdocdate: May 31 2007 $
+.Dd $Mdocdate: December 31 2009 $
.Dt POM 6
.Os
.Sh NAME
@@ -39,12 +39,12 @@
.Nm pom
.Sm off
.Oo
-.Oo Oo Oo Oo Oo
+.Oo Oo Oo Oo
.Ar cc Oc
.Ar yy Oc
.Ar mm Oc
.Ar dd Oc
-.Ar HH Oc
+.Ar HH
.Oc
.Sm on
.Sh DESCRIPTION
@@ -56,12 +56,12 @@ managerial behavior.
.Bl -tag -width "[[[[[cc]yy]mm]dd]HH]XX"
.It Xo
.Sm off
-.Oo Oo Oo Oo Oo
+.Oo Oo Oo Oo
.Ar cc Oc
.Ar yy Oc
.Ar mm Oc
.Ar dd Oc
-.Ar HH Oc
+.Ar HH
.Sm on
.Xc
Display the phase of the moon for a given time.
diff --git a/games/pom/pom.c b/games/pom/pom.c
index 70cc2d565b9..0dcb72db9e1 100644
--- a/games/pom/pom.c
+++ b/games/pom/pom.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pom.c,v 1.13 2009/10/27 23:59:26 deraadt Exp $ */
+/* $OpenBSD: pom.c,v 1.14 2009/12/31 13:02:08 sobrado Exp $ */
/* $NetBSD: pom.c,v 1.6 1996/02/06 22:47:29 jtc Exp $ */
/*
@@ -259,6 +259,6 @@ void
badformat(void)
{
warnx("illegal time format");
- (void)fprintf(stderr, "usage: pom [[[[[[cc]yy]mm]dd]HH]]\n");
+ (void)fprintf(stderr, "usage: pom [[[[[cc]yy]mm]dd]HH]\n");
exit(1);
}