about summary refs log tree commit diff
path: root/converter/other/fiasco
diff options
context:
space:
mode:
Diffstat (limited to 'converter/other/fiasco')
-rw-r--r--converter/other/fiasco/lib/arith.c4
-rw-r--r--converter/other/fiasco/params.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/converter/other/fiasco/lib/arith.c b/converter/other/fiasco/lib/arith.c
index 4b92a2f7..e61e753e 100644
--- a/converter/other/fiasco/lib/arith.c
+++ b/converter/other/fiasco/lib/arith.c
@@ -354,7 +354,7 @@ decode_symbol (arith_t *arith, model_t *model)
  *  Decode the next symbol - the state of the arithmetic decoder
  *  is given in 'arith'. Read refinement bits from the stream 'input'
  *  and use the given probability 'model'. Update the probability model after
- *  deconding the symbol (if necessary also rescale the symbol counts).
+ *  decoding the symbol (if necessary also rescale the symbol counts).
  *
  *  Return value:
  *	decoded symbol
@@ -398,7 +398,7 @@ decode_symbol (arith_t *arith, model_t *model)
       power = 1;			/* multiplicator */
       index = 0;			/* address of prob. model */
 
-      for (i = 0; i < model->order; i++) /* genarate a m-nary number */
+      for (i = 0; i < model->order; i++) /* generate a m-nary number */
       {
 	 index += model->context[i] * power;
 	 power *= model->symbols;
diff --git a/converter/other/fiasco/params.c b/converter/other/fiasco/params.c
index d834414a..29f52afc 100644
--- a/converter/other/fiasco/params.c
+++ b/converter/other/fiasco/params.c
@@ -651,7 +651,7 @@ usage (const param_t *params, const char *progname, const char *synopsis,
        const char *usr_file_name)
 /*
  *  Generates and prints command line description from param_t struct 'params'.
- *  'progname' is the name of the excecutable, 'synopsis' a short program
+ *  'progname' is the name of the executable, 'synopsis' a short program
  *  description, and 'comment' some more advice.
  *  If flag 'show_all_options' is set then print also options that are not
  *  associated with a short option character.