diff options
author | Ikko Eltociear Ashimine <eltociear@gmail.com> | 2023-02-27 08:57:02 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 00:57:02 +0100 |
commit | 89a60939f8b0c60e8abf63b698491a8b138da772 (patch) | |
tree | 4b186364b5bffbc16572632312bcebb2170f9157 /compiler/sourcemap.nim | |
parent | 4ae598762e7dac1886b481a48ae0875843e5153f (diff) | |
download | Nim-89a60939f8b0c60e8abf63b698491a8b138da772.tar.gz |
Fix typo in sourcemap.nim (#21438)
seperated -> separated
Diffstat (limited to 'compiler/sourcemap.nim')
-rw-r--r-- | compiler/sourcemap.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sourcemap.nim b/compiler/sourcemap.nim index 2245250ac..2fcc50bbe 100644 --- a/compiler/sourcemap.nim +++ b/compiler/sourcemap.nim @@ -164,7 +164,7 @@ func toSourceMap*(info: SourceInfo, file: string): SourceMap {.raises: [].} = result.names = info.names # Convert nodes into mappings. # Mappings are split into blocks where each block referes to a line in the outputted JS. - # Blocks can be seperated into statements which refere to tokens on the line. + # Blocks can be separated into statements which refere to tokens on the line. # Since the mappings depend on previous values we need to # keep track of previous file, name, etc var |