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

Fix spelling of "dynamically" #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions 04_dialyzer.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ annotations. These are strictly optional in that if you don't specify
them the code will still compile and they do not affect the way that
the code runs. What you can do with them is use tools like +dialyzer+
to check that the program is consistent. If you do not include types
dialyzer will dynamicly derive the types from the code. But it will
dialyzer will dynamically derive the types from the code. But it will
often assign a more broad type than might be called for.

Using type annotations and dialyzer it is possible to express many
Expand Down Expand Up @@ -107,7 +107,7 @@ are good style). Integers can also be a good type, so you could have a
type +http_success_codes()+ can be defined as +200|201|202|203|204+ or
just +200..204+.

An array can e indicated as one would expect with square brackets,
An array can be indicated as one would expect with square brackets,
the type +[]+ indicates an empty array, while an array of integers
would be shown as +[integer()]+, and a string is defined as +[char()]+
a non empty string is defined as +[char(),...]+.
Expand Down