From 3cb7be068c7daee4989f408dae204107303c0003 Mon Sep 17 00:00:00 2001 From: Alexander Barth Date: Thu, 19 Dec 2024 14:45:16 +0100 Subject: [PATCH] add end for an if in the docstrings --- src/i2c.jl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/i2c.jl b/src/i2c.jl index 091ad49..6d5bd0d 100644 --- a/src/i2c.jl +++ b/src/i2c.jl @@ -453,9 +453,10 @@ the error code). ```julia (b, d) = i2c_read_i2c_block_data(pi, h, 4, 32) if b >= 0 -# process data + # process data else -# process read failure + # process read failure +end ``` """ function i2c_read_i2c_block_data(self::Pi, handle, reg, count)