Merge pull request #5053 from james-stocks/js/fix_markup

Fix unmatched backticks in docs
This commit is contained in:
Nick Schwaderer 2020-06-05 04:28:27 -07:00 committed by GitHub
commit e01e69e19f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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")`