I’m trying to add offsets to two coordinates with tikz like this:
\draw[line width=4] (coorda) ++(0.3pt,0) -- (coordb) ++(-0.3pt,0);
The first ++ instruction works just fine, but the second one has no effect. The problem is that the thick horizontal line does not flush with the vertical line (showing coordb in this image):

I had a look at the documentation but I couldn’t figure it out. I will provide a MWE if the solution is not trivial. Maybe there is a better way to join these lines, that does not rely on manually adding offsets?
++does have an effect, but since you're not drawing anything (no--,to[...],-|, etc.) between the last two coordinates, it never shows in the output. – Paul Gessler Oct 27 '14 at 23:27--solved it! I guess, this question can be closed as duplicate. – Lenar Hoyt Oct 27 '14 at 23:31