sourcegraph / srclib

srclib is a polyglot code analysis library, built for hackability. It consists of language analysis toolchains (currently for Go and Java, with Python, JavaScript, and Ruby in beta) with a common output format, and a CLI tool for running the analysis.
https://srclib.org
Other
942 stars 62 forks source link

README: fix typos in goxc path #304

Closed bradleyfalzon closed 8 years ago

bradleyfalzon commented 8 years ago

The developer instructions contains instructions to install goxc utility, there's a minor typo in the import path and users should go get the path in order to fetch and install, not go install which requires the path to exist locally.

dmitshur commented 8 years ago

I can confirm the typo in the import path of README. The Makefile has the correctly spelled version, see:

https://github.com/sourcegraph/srclib/blob/309efcef61f45418c862e70f2f3d7f93cd9f424e/Makefile#L37

The change to go get -u makes sense.

LGTM. Thanks!