Fix load paths examples in README (#80)

This commit is contained in:
Kelly Campbell 2018-12-06 11:31:32 -05:00 committed by c-parsons
parent daf5137022
commit c00ef49386
1 changed files with 2 additions and 2 deletions

View File

@ -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)