TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Subject:Re: Passive voice -- a story From:Richard Mateosian <srm -at- C2 -dot- ORG> Date:Fri, 26 Jan 1996 11:24:58 -0800
> We called it "programmer documentation." Essentially, the manual was a
> running narrative of thousands of lines of code -- what the code was
> doing as it was doing it.
> We decided after much thought to rewrite in
> passive voice. [The input number is validated. If the number is not
> valid, an error message appears. If the number is valid, the next
> unused index number is retrieved and assigned to the record...]
Lines of code are commands to the system that executes them. Running
commentary should translate those commands into English.
CALL VALINP ;Validate the input
IF (CODE = ERROR) ;Was it OK?
CALL DISPERR ; No - display the error message
REPEAT ; Go back and ask again
RECNO = NEXT() ; Yes - Assign next unused index to the record
Here, as elsewhere, active voice makes for a clearer, more concise
communication. ...RM