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

Add missing div section open #2

Merged
merged 1 commit into from
May 29, 2024
Merged
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: 2 additions & 0 deletions episodes/readable.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@
A vague function name, such as `calc(a, b)` will be mysterious without any more explanation.
Name your functions using a **simple verb phrase** such as `calculate_area(width, height)` so it's easy to interpret their purpose.

::: group-tab

### Python

```python
Expand Down Expand Up @@ -227,7 +229,7 @@
NEGATIVE_ONE <- -1
```

For more information about this aspect of coding style, please read the [Style Guide](http://adv-r.had.co.nz/Style.html) in *Advanced R* by Hadley Wickham.

Check warning on line 232 in episodes/readable.md

View workflow job for this annotation

GitHub Actions / Build markdown source files if valid

[needs HTTPS]: [Style Guide](http://adv-r.had.co.nz/Style.html)

:::

Expand Down
Loading