From 63399bbeea7c25bc0616ca90493231f71769e1c1 Mon Sep 17 00:00:00 2001 From: Dick Hollenbeck Date: Fri, 25 Nov 2011 09:40:40 -0600 Subject: [PATCH] changes --- Documentation/biu-plan.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/biu-plan.txt b/Documentation/biu-plan.txt index 3949d5a5bc..3f7ad9f554 100644 --- a/Documentation/biu-plan.txt +++ b/Documentation/biu-plan.txt @@ -86,14 +86,14 @@ more. FMT_ENG stands for "format string for ENGineering units used out in the file". A define is needed simply to provide consistency across many sites of usage. BIUs -will be scaled before being written to disk in every most every case, and since +will be scaled before being written to disk in most every case, and since scaling is a multiplication, it means casting one of the factors to BFU, and then this product is output with a printf() style function using the FMT_ENG string segment. That is, the FMT_ENG will be suitable for use with a BFU type. When BFU is set to double, then FMT_ENG will be set to "%.6g". When BFU is set to long double -then FMT_ENG will be set to "%.6lg". For example: +then FMT_ENG will be set to "%.6Lg". For example: #if USE_DOUBLE_BFU typedef double BFU;