Skip to content

Commit

Permalink
amend styleguide
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijsvdLaar committed May 14, 2019
1 parent f8ed8ec commit 409ec5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions STYLEGUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ Other rules:
x = x*2 - 1
hypot2 = x*x + y*y
c = (a+b) * (a-b)
c = (a + b)*(a - b)
# No:
i=i+1
Expand Down Expand Up @@ -186,8 +187,8 @@ function condense(
schedule::Schedule,
fg::FactorGraph,
variable::Symbol,
id=generateId(variable)
)
id=generateId(variable))
...
end
Expand Down
2 changes: 1 addition & 1 deletion docs/src/internals.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Internals

This page documents the internals of the ForneyLab package. It is mainly tailored for software developers interested in understanding the inner workings of the package.
This page documents the internals of the ForneyLab package. It is mainly tailored for software developers interested in understanding the inner workings of the package. Coding style conventions can be found in `STYLEGUIDE.md`.

## Directory structure

Expand Down

0 comments on commit 409ec5b

Please sign in to comment.