Skip to content

Commit 2300402

Browse files
committed
replace "behavior" with "behaviour"
1 parent ea7851c commit 2300402

2 files changed

+2
-2
lines changed

_posts/2012-04-24-a-peek-inside-elixir-s-parallel-compiler.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The implementation for `wait_for_messages` is now broken into 4 clauses:
166166

167167
* `{ :waiting, _child, _module }` - A message received every time a child process is waiting on a module to be compiled. In this scenario, all we do is spawn a new process to compile another file, ensuring compilation is never blocked;
168168

169-
* `{ :EXIT, _child, { reason, where } }` - The same behavior as before, it simply raises an error if any of the child processes fail;
169+
* `{ :EXIT, _child, { reason, where } }` - The same behaviour as before, it simply raises an error if any of the child processes fail;
170170

171171
* `after: 10_000` - This clause is going to be invoked whenever the main process does not receive a message for 10 seconds. This means a file depends on a module that does not exist (and therefore waits forever) or there is a cyclic dependency;
172172

_posts/2014-09-18-elixir-v1-0-0-released.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Under some unlikely circumstances, we may introduce changes that break existing
4343

4444
* Security: a security issue in the implementation may arise whose resolution requires backwards incompatible changes. We reserve the right to address such security issues.
4545

46-
* Bugs: if an application has undesired behaviour, a program that depends on the buggy behavior may break if the bug is fixed. We reserve the right to fix such bugs.
46+
* Bugs: if an application has undesired behaviour, a program that depends on the buggy behaviour may break if the bug is fixed. We reserve the right to fix such bugs.
4747

4848
* Compiler front-end: improvements may be done to the compiler, introducing new warnings for ambiguous modes and providing more detailed error messages. Those can lead to compilation errors (when running with `--warning-as-errors`) or tooling failures when asserting on specific error messages (although one should avoid such). We reserve the right to do such improvements.
4949

0 commit comments

Comments
 (0)