commit 5f429bfac86b8ccbc759ecc72784eb16c0e476fd
parent db7528333b5a80b202e48b6c50961fb40d892dd0
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Fri, 15 Oct 2021 11:40:01 +0200
Fix ambiEnt spelling in both man and output
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/stardis-output.5.txt b/doc/stardis-output.5.txt
@@ -540,11 +540,11 @@ _______
-------------------------------------
<end-name> ::= STRING # the name of the boundary at the end of the
- # heat path, or AMBIANT for radiative ending
+ # heat path, or AMBIENT for radiative ending
<end-id> ::= INTEGER # in [0 #boundaries]
# order is the order in the description file,
- # AMBIANT's id being #boundaries
+ # AMBIENT's id being #boundaries
<x> ::= REAL
diff --git a/src/stardis-output.c b/src/stardis-output.c
@@ -443,7 +443,7 @@ dump_sample_end
size_t ambient_id = darray_descriptions_size_get(e_ctx->desc);
ASSERT(ambient_id <= UINT_MAX);
/* End, End ID, X, Y, Z, Elapsed time */
- fprintf(stream, "AMBIANT, %u, 0, 0, 0, %g\n",
+ fprintf(stream, "AMBIENT, %u, 0, 0, 0, %g\n",
(unsigned)ambient_id, elapsed);
} else {
struct sdis_point pt = SDIS_POINT_NULL;