From db166290088fb7d39d01f68b9860253893d4f1a7 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 20 Dec 2019 09:19:39 +0900 Subject: Fixed misspellings Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec. --- win32/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32') diff --git a/win32/file.c b/win32/file.c index 275520215a..9d21370019 100644 --- a/win32/file.c +++ b/win32/file.c @@ -552,7 +552,7 @@ rb_file_expand_path_internal(VALUE fname, VALUE dname, int abs_mode, int long_na /* Determine require buffer size */ size = GetFullPathNameW(buffer, PATH_BUFFER_SIZE, wfullpath_buffer, NULL); if (size > PATH_BUFFER_SIZE) { - /* allocate more memory than alloted originally by PATH_BUFFER_SIZE */ + /* allocate more memory than allotted originally by PATH_BUFFER_SIZE */ wfullpath = ALLOC_N(wchar_t, size); size = GetFullPathNameW(buffer, size, wfullpath, NULL); } -- cgit v1.2.3