summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-05-28 18:01:56 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-05-28 18:01:56 +0200
commite5281f9356916aeb13ed16c0abe4c5d943872aa8 (patch)
tree2c53d1de60ce08d83292c183073c36056207a0d6 /lib/system
parent382bc34f932eb5e9728ee5380a5666ca1ffd2f92 (diff)
downloadNim-e5281f9356916aeb13ed16c0abe4c5d943872aa8.tar.gz
rename 'nimrodVM' to 'nimVM'
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/platforms.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/platforms.nim b/lib/system/platforms.nim
index 97f97e8ae..b561cd3ba 100644
--- a/lib/system/platforms.nim
+++ b/lib/system/platforms.nim
@@ -7,7 +7,7 @@
 #    distribution, for details about the copyright.
 #
 
-## Platform detection for Nim. This module is included by the system module!
+## Platform detection for NimScript. This module is included by the system module!
 ## Do not import it directly!
 
 type
@@ -62,7 +62,7 @@ const
               elif defined(haiku): OsPlatform.haiku
               elif defined(android): OsPlatform.android
               elif defined(js): OsPlatform.js
-              elif defined(nimrodVM): OsPlatform.nimVM
+              elif defined(nimVM): OsPlatform.nimVM
               elif defined(standalone): OsPlatform.standalone
               else: OsPlatform.none
     ## the OS this program will run on.