Merge pull request #6066 from replicajune/patch-1

fixing bad markdown syntax
This commit is contained in:
Clinton Wolfe 2022-05-22 23:53:57 -04:00 committed by GitHub
commit 90e2318d66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -417,7 +417,7 @@ or,
it { should_not be_file }
it { should_not be_directory }
end
```ruby
```
### Test if a file is a block device
@ -428,7 +428,7 @@ or,
it { should_not be_file }
it { should_not be_directory }
end
```ruby
```
### Test the mode for a file
@ -436,7 +436,7 @@ or,
describe file('/dev') do
its('mode') { should cmp '00755' }
end
```ruby
```
### Test the owner of a file