From a2145ed9e10fed9ad8c98f8571c2444e8420b506 Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Sun, 21 Jul 2019 23:14:36 +0530 Subject: [PATCH] Update sizeof.adoc --- Language/Variables/Utilities/sizeof.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Variables/Utilities/sizeof.adoc b/Language/Variables/Utilities/sizeof.adoc index d40f4d2b7..ecf4c45ec 100644 --- a/Language/Variables/Utilities/sizeof.adoc +++ b/Language/Variables/Utilities/sizeof.adoc @@ -66,7 +66,7 @@ void loop() { [float] === Notes and Warnings -Note that `sizeof` returns the total number of bytes. So for arrays of larger variable types such as ints, the for loop would look something like this. +Note that `sizeof` returns the total number of bytes. So for arrays of larger variable types such as link:../../data-types/int[`int`]s, the for loop would look something like this. [source,arduino] ----