diff --git a/Terminal.Gui/Core/Graphs/LineCanvas.cs b/Terminal.Gui/Core/Graphs/LineCanvas.cs
index 07767564b..e0c31440c 100644
--- a/Terminal.Gui/Core/Graphs/LineCanvas.cs
+++ b/Terminal.Gui/Core/Graphs/LineCanvas.cs
@@ -7,7 +7,7 @@ namespace Terminal.Gui.Graphs {
///
/// Facilitates box drawing and line intersection detection
- /// and rendering.
+ /// and rendering. Does not support diagonal lines.
///
public class LineCanvas {
@@ -31,6 +31,7 @@ namespace Terminal.Gui.Graphs {
/// Length of line. 0 for a dot.
/// Positive for Down/Right. Negative for Up/Left.
/// Direction of the line.
+ /// The style of line to use
public void AddLine (Point from, int length, Orientation orientation, BorderStyle style)
{
lines.Add (new StraightLine (from, length, orientation, style));