]> granicus.if.org Git - apache/commitdiff
Fix perl variable mention (d'oh!), slightly improve english usage.
authorbrian <brian@unknown>
Wed, 24 Jun 1998 07:18:48 +0000 (07:18 +0000)
committerbrian <brian@unknown>
Wed, 24 Jun 1998 07:18:48 +0000 (07:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81603 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/misc/FAQ.html

index 77df77e0ea00ed2e53b3f3afcb84b31ecbd0c37e..ba1b4d2362e3d17765cbfbd708a39a701037ab1a 100644 (file)
@@ -14,7 +14,7 @@
   <!--#include virtual="header.html" -->
   <H1 ALIGN="CENTER">Apache Server Frequently Asked Questions</H1>
   <P>
-  $Revision: 1.120 $ ($Date: 1998/06/07 01:33:52 $)
+  $Revision: 1.121 $ ($Date: 1998/06/24 07:18:48 $)
   </P>
   <P>
   The latest version of this FAQ is always available from the main
   As of Apache 1.3, CGI scripts are essentially not buffered.  Every time
   your script does a "flush" to output data, that data gets relayed on to
   the client.  Some scripting languages, for example Perl, have their own
-  buffering for output - this can be disabled by setting the <CODE>$!</CODE>
+  buffering for output - this can be disabled by setting the <CODE>$|</CODE>
   special variable to 1.  Of course this does increase the overall number
-  of packets being transmitted, which can result in a sense of slowness by 
+  of packets being transmitted, which can result in a sense of slowness for 
   the end user.
   </P>
   <P>Prior to 1.3, you needed to use "nph-" scripts to accomplish non-buffering.