From 27442c4322ac95818b61cbf3e7dc24c8854c3a38 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Mon, 27 Feb 2017 09:15:36 -0500 Subject: [PATCH] fixed issue with doc comment --- 4coder_API/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4coder_API/types.h b/4coder_API/types.h index 956e3ea5..06d45281 100644 --- a/4coder_API/types.h +++ b/4coder_API/types.h @@ -615,7 +615,7 @@ DOC_SEE(buffer_add_markers) STRUCT Marker{ /* DOC(The current position of the marker measure in absolute byte positioning coordinates.) */ int32_t pos; - /* DOC(When a marker is inside a range that gets edited, by default the marker 'leans_left' which means it goes to the beginning of the edited range. If the field lean_right is set to true, the marker will lean right with edits and will go to the end of edited range.*/ + /* DOC(When a marker is inside a range that gets edited, by default the marker 'leans_left' which means it goes to the beginning of the edited range. If the field lean_right is set to true, the marker will lean right with edits and will go to the end of edited range.) */ bool32 lean_right; };