Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs fixes #366

Merged
merged 3 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ test: build

.PHONY: test-external
test-external: build
$(PROOFER) --ignore-status-codes "302"
$(PROOFER) --ignore-status-codes "302" --ignore-urls "/reddit.com/"
2 changes: 1 addition & 1 deletion docs/_posts/2014-06-03-poolboy-example-errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ abnormally with a reason different from `shutdown`, nor any other errors.
Concuerror can also produce a
[DOT](https://en.wikipedia.org/wiki/DOT_(graph_description_language)) file,
including all the interleavings. This feature can be enabled with `--graph <filename>`.
You can then use [`dot`](https://linux.die.net/man/1/dot) to convert
You can then use <a href="https://linux.die.net/man/1/dot" data-proofer-ignore>`dot`</a> to convert
the DOT file to an image.

### Racing events
Expand Down
6 changes: 3 additions & 3 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ Use a higher `--print_depth`.
#### Timeouts

Timeouts may appear as part of an Erlang
[`receive`](https://erlang.org/doc/reference_manual/expressions.html#receive)
[`receive`](https://www.erlang.org/doc/system/expressions.html#receive)
statement or calls to
[`erlang:send_after/3`](https://erlang.org/doc/man/erlang.html#send_after-3) and
[`erlang:start_timer/3`](https://erlang.org/doc/man/erlang.html#start_timer-3). Due
[`erlang:send_after/3`](https://www.erlang.org/doc/apps/erts/erlang.html#send_after/3) and
[`erlang:start_timer/3`](https://www.erlang.org/doc/apps/erts/erlang.html#start_timer/3). Due
to the fact that Concuerror's instrumentation has an overhead on the execution
time of the program, Concuerror normally disregards the actual timeout values
and assumes:
Expand Down