Skip to content

Commit 958278c

Browse files
authored
Merge pull request #706 from initialspark/patch-1
updated grammar
2 parents 52ba3fe + d2feda4 commit 958278c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/configuration/devtool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ W> There are some issues with Source Maps in Chrome. [We need your help!](https:
3434

3535
`eval` - Each module is executed with `eval()` and `//@ sourceURL`. This is pretty fast. The main disadvantage is that it doesn't display line numbers correctly since it gets mapped to transpiled code instead of the original code.
3636

37-
`inline-source-map` - A SourceMap is added as DataUrl to the bundle.
37+
`inline-source-map` - A SourceMap is added as a DataUrl to the bundle.
3838

39-
`eval-source-map` - Each module is executed with `eval()` and a SourceMap is added as DataUrl to the `eval()`. Initially it is slow, but it provides fast rebuild speed and yields real files. Line numbers are correctly mapped since it gets mapped to the original code.
39+
`eval-source-map` - Each module is executed with `eval()` and a SourceMap is added as a DataUrl to the `eval()`. Initially it is slow, but it provides fast rebuild speed and yields real files. Line numbers are correctly mapped since it gets mapped to the original code.
4040

41-
`cheap-module-eval-source-map` - Like `eval-source-map`, each module is executed with `eval()` and a SourceMap is added as DataUrl to the `eval()`. It is "cheap" because it doesn't have column mappings, it only maps line numbers.
41+
`cheap-module-eval-source-map` - Like `eval-source-map`, each module is executed with `eval()` and a SourceMap is added as a DataUrl to the `eval()`. It is "cheap" because it doesn't have column mappings, it only maps line numbers.
4242

4343
### For production
4444

0 commit comments

Comments
 (0)