summaryrefslogtreecommitdiff
path: root/vendor/github.com/charmbracelet/x/cellbuf/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/charmbracelet/x/cellbuf/errors.go')
-rw-r--r--vendor/github.com/charmbracelet/x/cellbuf/errors.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/vendor/github.com/charmbracelet/x/cellbuf/errors.go b/vendor/github.com/charmbracelet/x/cellbuf/errors.go
new file mode 100644
index 0000000..64258fe
--- /dev/null
+++ b/vendor/github.com/charmbracelet/x/cellbuf/errors.go
@@ -0,0 +1,6 @@
+package cellbuf
+
+import "errors"
+
+// ErrOutOfBounds is returned when the given x, y position is out of bounds.
+var ErrOutOfBounds = errors.New("out of bounds")