docs: fix bihash doc bugs

Change hash -> hash_table in the pro forma main_t structure.
Remove trailing whitespace.

Type: docs

Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: I10c310dded14d52ad09df7ca3a76e60f15266b6b
This commit is contained in:
Dave Barach
2020-11-26 07:47:48 -05:00
committed by Dave Barach
parent fe1ab7e216
commit 0b8fccb403

View File

@ -123,9 +123,9 @@ Add an instance of the selected bihash data structure to e.g. a
typedef struct
{
...
BVT (clib_bihash) hash;
BVT (clib_bihash) hash_table;
or
clib_bihash_8_8_t hash;
clib_bihash_8_8_t hash_table;
...
} my_main_t;
```