summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-13 01:32:20 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-13 01:32:20 +0000
commite296f6cf63f41516ea8c7407d5c883fef2743322 (patch)
tree02d0c91278935f79187cd11cc72ee7e122776a8a
parentcf9cd06b78c49ee12b76b648615ae6e726d3a4fd (diff)
win32/win32.c: fix typo in comment [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65051 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--win32/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index f512c92bd6..820b16c40b 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1297,7 +1297,7 @@ rb_w32_start_process(const char *abspath, char *const *argv, int out_fd)
{
/* NOTE: This function is used by MJIT worker, so it can be used parallelly with
Ruby's main thread. So functions touching things shared with main thread can't
- be sued, like `ALLOCV` that may trigger GC or `FindFreeChildSlot` that finds
+ be used, like `ALLOCV` that may trigger GC or `FindFreeChildSlot` that finds
a slot from shared memory without atomic locks. */
struct ChildRecord child;
char *cmd;