aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2022-10-23 10:17:45 +0200
committerzeertzjq <zeertzjq@outlook.com>2022-11-02 21:45:26 +0800
commit4716a578ae0c3516d685495bb55e40c939a4ac87 (patch)
treeee2734f0fe4e4d91f4f163ba99f64ce992948af9 /src/nvim/ops.c
parent44b88d8c310e778c55ef1f7a270d2651266054ca (diff)
downloadrneovim-4716a578ae0c3516d685495bb55e40c939a4ac87.tar.gz
rneovim-4716a578ae0c3516d685495bb55e40c939a4ac87.tar.bz2
rneovim-4716a578ae0c3516d685495bb55e40c939a4ac87.zip
docs: fix typos
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
index 7f8a5b6f2e..2d53918ded 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -3272,7 +3272,7 @@ void do_put(int regname, yankreg_T *reg, int dir, long count, int flags)
shortline = (vcol < col) || (vcol == col && !*ptr);
- if (vcol < col) { // line too short, padd with spaces
+ if (vcol < col) { // line too short, pad with spaces
bd.startspaces = col - vcol;
} else if (vcol > col) {
bd.endspaces = vcol - col;