Fix load paths examples in README (#80)
This commit is contained in:
parent
daf5137022
commit
c00ef49386
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue