diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2021-03-01 00:17:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 13:17:19 -0800 |
commit | 56461c280f78c55f538da7f382e1c2c308e04915 (patch) | |
tree | f98e1d9a440725e4bdf3f44a1694aec958299ff6 /doc/hcr.rst | |
parent | 26a6ceb34eb2bfca4e39dec2dac2d0a2cdc1bade (diff) | |
download | Nim-56461c280f78c55f538da7f382e1c2c308e04915.tar.gz |
Change stdlib imports to use std prefix in most examples (#17202)
Diffstat (limited to 'doc/hcr.rst')
-rw-r--r-- | doc/hcr.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/hcr.rst b/doc/hcr.rst index d2e13e1c7..6dc65b1cd 100644 --- a/doc/hcr.rst +++ b/doc/hcr.rst @@ -29,7 +29,7 @@ To install SDL2 you can use ``nimble install sdl2``. import sdl2 #*** import the hotcodereloading stdlib module *** - import hotcodereloading + import std/hotcodereloading var runGame*: bool = true var window: WindowPtr |