Mercurial > hg > amuse
changeset 172:b16472d7823f
base/conditions.lisp: fix typo in condition message
darcs-hash:20080213163458-c0ce4-069e66868d2f3b900dfdd5c4d9aa1d55ab23fd40.gz
author | Marcus Pearce <m.pearce@gold.ac.uk> |
---|---|
date | Wed, 13 Feb 2008 16:34:58 +0000 |
parents | 98443d36ac6a |
children | 1361b02e7023 |
files | base/conditions.lisp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/base/conditions.lisp Wed Jan 23 18:09:14 2008 +0000 +++ b/base/conditions.lisp Wed Feb 13 16:34:58 2008 +0000 @@ -14,7 +14,7 @@ (datatype :initarg :datatype :reader undefined-action-datatype)) (:report (lambda (condition stream) - (format stream "The consequence of performing ~A on and object of type ~A is undefined" + (format stream "The consequence of performing ~A on an object of type ~A is undefined." (undefined-action-operation condition) (undefined-action-datatype condition))))) @@ -27,7 +27,7 @@ (datatype :initarg :datatype :reader insufficient-information-datatype)) (:report (lambda (condition stream) - (format stream "The ~A object does not contain enough information to perform ~A" + (format stream "The ~A object does not contain enough information to perform ~A." (insufficient-information-datatype condition) (insufficient-information-operation condition)))))