Browse Source

Merge pull request #255 from PaluMacil/master

update import paths in sub-READMEs
Dmitry Panov 4 years ago
parent
commit
465e240c17
3 changed files with 3 additions and 3 deletions
  1. 1 1
      ast/README.markdown
  2. 1 1
      file/README.markdown
  3. 1 1
      token/README.markdown

+ 1 - 1
ast/README.markdown

@@ -1,6 +1,6 @@
 # ast
 --
-    import "github.com/robertkrimen/otto/ast"
+    import "github.com/dop251/goja/ast"
 
 Package ast declares types representing a JavaScript AST.
 

+ 1 - 1
file/README.markdown

@@ -1,6 +1,6 @@
 # file
 --
-    import "github.com/robertkrimen/otto/file"
+    import "github.com/dop251/goja/file"
 
 Package file encapsulates the file abstractions used by the ast & parser.
 

+ 1 - 1
token/README.markdown

@@ -1,6 +1,6 @@
 # token
 --
-    import "github.com/robertkrimen/otto/token"
+    import "github.com/dop251/goja/token"
 
 Package token defines constants representing the lexical tokens of JavaScript
 (ECMA5).