aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorKelly Campbell <kelly.a.campbell@gmail.com>2018-12-06 11:31:32 -0500
committerc-parsons <cparsons@google.com>2018-12-06 11:31:32 -0500
commitc00ef493869e2966d47508e8625aae723a4a3054 (patch)
tree8e0669738ce78572013f74532672b0e37771540a /README.md
parentdaf513702286fe211f291675443235e35e79f34f (diff)
downloadbazel-skylib-c00ef493869e2966d47508e8625aae723a4a3054.tar.gz
Fix load paths examples in README (#80)
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2c9251c..97a9e5f 100644
--- a/README.md
+++ b/README.md
@@ -46,8 +46,8 @@ the modules (listed [below](#list-of-modules)) and access the symbols by
dotting into those structs:
```python
-load("@bazel_skylib//lib/paths.bzl", "paths")
-load("@bazel_skylib//lib/shell.bzl", "shell")
+load("@bazel_skylib//lib:paths.bzl", "paths")
+load("@bazel_skylib//lib:shell.bzl", "shell")
p = paths.basename("foo.bar")
s = shell.quote(p)