aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTwoFinger <Two-Finger@users.noreply.github.com>2018-06-04 12:53:15 +0300
committerMarc André Tanner <mat@brain-dump.org>2020-01-30 15:21:07 +0100
commitf41a9cf4cbca26d7c4a8ff56e7d64f889331cd55 (patch)
tree154b1192db1ac67cb371dd34554cca938def009b
parent76f40dd8afbfe31b6071542824ab9d9a45e75d75 (diff)
downloadvis-f41a9cf4cbca26d7c4a8ff56e7d64f889331cd55.tar.gz
vis-f41a9cf4cbca26d7c4a8ff56e7d64f889331cd55.tar.xz
view: Fix a @param name in a comment
-rw-r--r--view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.h b/view.h
index 1da8a90..4d01564 100644
--- a/view.h
+++ b/view.h
@@ -58,7 +58,7 @@ Filerange view_viewport_get(View*);
* @param pos The position to query.
* @param line Will be updated with screen line on which `pos` resides.
* @param row Will be updaded with zero based window row on which `pos` resides.
- * @param line Will be updated with zero based window column which `pos` resides.
+ * @param col Will be updated with zero based window column which `pos` resides.
* @return Whether `pos` is visible. If not, the pointer arguments are left unmodified.
*/
bool view_coord_get(View*, size_t pos, Line **line, int *row, int *col);