Skip to content

Code Highlight markup and Link colouration fix sizeof.adoc #671

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

Merged
merged 1 commit into from
Jul 15, 2019
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
4 changes: 2 additions & 2 deletions Language/Variables/Utilities/sizeof.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ The `sizeof` operator returns the number of bytes in a variable type, or the num

[float]
=== Parameters
`variable`: The thing to get the size of. Allowed data types: any variable type or array (e.g. `int`, `float`, `byte`).
`variable`: The thing to get the size of. Allowed data types: any variable type or array (e.g. `link:../../data-types/int[int]`, `link:../../data-types/float[float]`, `link:../../data-types/byte[byte]`).


[float]
=== Returns
The number of bytes in a variable or bytes occupied in an array. Data type: `size_t`.
The number of bytes in a variable or bytes occupied in an array. Data type: `link:../../data-types/size_t[size_t]`.

--
// OVERVIEW SECTION ENDS
Expand Down