Fix unmatched backticks in docs

Signed-off-by: James Stocks <jstocks@chef.io>
This commit is contained in:
James Stocks 2020-05-28 11:19:18 +01:00
parent d6453b82a5
commit 51aeb9e2a6
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ Chef InSpec will resolve the symlink recursively and return the ultimate linked
### shallow\_link\_path
The `shallow_link_path`` property returns the path that the file refers to, only resolving
The `shallow_link_path` property returns the path that the file refers to, only resolving
it once (that is, it performs a readlink operation). If the file is not a symlink, nil is returned.
its('shallow_link_path') { should eq '/some/path/to/file' }

View file

@ -134,7 +134,7 @@ ability to take an OS profile and execute it remotely or locally.
## Avoid shelling out
Avoid:
- `` `ls``\`
- `` `ls` ``
- `system("ls")`
- `IO.popen("ls")`