Skip to content

Commit d89e9ce

Browse files
committed
[DOC] Update cookbook
1 parent 89e66a9 commit d89e9ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/cookbook/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Search for keywords with `Strg + F`.
3939
\include test/snippet/ibf/interleaved_bloom_filter_try_increase_bin_number_to.cpp
4040
\include test/snippet/ibf/membership_agent_bulk_contains.cpp
4141
\include test/snippet/ibf/membership_agent_construction.cpp
42-
\include test/snippet/platform_unreachable.cpp
4342
\include test/snippet/readme.cpp
4443
\include test/snippet/snippet_main.cpp
4544
\include test/snippet/test/tmp_directory.cpp
45+
\include test/snippet/unreachable.cpp

test/scripts/add_snippets_to_cookbook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ head -n ${LINE_NUMBER_OF_KEY_LINE} ${COOKBOOK} > ${TMP_FILE}
4444
# Iterate through all files in test/snippet/*
4545
# Order of results from find is not fixed, so we sort the results alphabetically.
4646
# Snippets of doc would be: find ./doc/ -type f -name "*.cpp" -and -not -path "./doc/cookbook/*"
47-
for snippet in $(find test/snippet/ -type f -name "*.cpp" | sort); do
47+
for snippet in $(find test/snippet -type f -name "*.cpp" | sort); do
4848
echo "\include ${snippet}" >> ${TMP_FILE}
4949
done
5050

0 commit comments

Comments
 (0)