From 51aeb9e2a686b2f94b09cdab41ad553c9a932e79 Mon Sep 17 00:00:00 2001 From: James Stocks Date: Thu, 28 May 2020 11:19:18 +0100 Subject: [PATCH] Fix unmatched backticks in docs Signed-off-by: James Stocks --- docs/resources/file.md.erb | 2 +- docs/style.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/file.md.erb b/docs/resources/file.md.erb index 8f7087068..f9d12f746 100644 --- a/docs/resources/file.md.erb +++ b/docs/resources/file.md.erb @@ -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' } diff --git a/docs/style.md b/docs/style.md index 524e63961..6aa20a649 100644 --- a/docs/style.md +++ b/docs/style.md @@ -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")`