Skip to content

Commit 4c36ccd

Browse files
committed
fix typo
1 parent 0cfc2d9 commit 4c36ccd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugin/bullets.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ fun! s:parse_bullet_text(line_text)
161161
if s:bullet_cache isnot v:null
162162
let l:cached = get(s:bullet_cache, a:line_text, v:null)
163163
if l:cached isnot v:null
164-
" Return a copy so as not to break the referene
164+
" Return a copy so as not to break the reference
165165
return copy(l:cached)
166166
endif
167167
endif
@@ -177,11 +177,11 @@ fun! s:parse_bullet_text(line_text)
177177
let l:roman = empty(l:bullet) && empty(l:num) ? s:match_roman_list_item(a:line_text) : {}
178178

179179
let l:kinds = s:filter([l:bullet, l:check, l:num, l:alpha, l:roman], '!empty(v:val)')
180-
180+
181181
if s:bullet_cache isnot v:null
182182
let s:bullet_cache[a:line_text] = l:kinds
183183
endif
184-
184+
185185
return l:kinds
186186
endfun
187187

0 commit comments

Comments
 (0)