comparison src/testdir/test_stat.vim @ 19195:2ef19eed524a v8.2.0156

patch 8.2.0156: various typos in source files and tests Commit: https://github.com/vim/vim/commit/4b96df5a017a04141c4e901b1fc5704a3ca48099 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 22:00:26 2020 +0100 patch 8.2.0156: various typos in source files and tests Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes https://github.com/vim/vim/issues/5532)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 22:15:05 +0100
parents 0d64e74be8b2
children 08940efa6b4e
comparison
equal deleted inserted replaced
19194:9986e645676b 19195:2ef19eed524a
3 func CheckFileTime(doSleep) 3 func CheckFileTime(doSleep)
4 let fnames = ['Xtest1.tmp', 'Xtest2.tmp', 'Xtest3.tmp'] 4 let fnames = ['Xtest1.tmp', 'Xtest2.tmp', 'Xtest3.tmp']
5 let times = [] 5 let times = []
6 let result = 0 6 let result = 0
7 7
8 " Use three files istead of localtim(), with a network filesystem the file 8 " Use three files instead of localtim(), with a network filesystem the file
9 " times may differ at bit 9 " times may differ at bit
10 let fl = ['Hello World!'] 10 let fl = ['Hello World!']
11 for fname in fnames 11 for fname in fnames
12 call writefile(fl, fname) 12 call writefile(fl, fname)
13 call add(times, fname->getftime()) 13 call add(times, fname->getftime())