diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-06-17 11:43:07 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-17 11:43:07 +0900 |
| commit | dee895ae79570bf87ea6ae9c6f8c34bbf3b05e31 (patch) | |
| tree | bfb05d293b0dd3b50805d293e898c9d1017b13e0 /doc/guides/compile.md | |
| parent | 7b0eb1f9b3ecfaaa83e493b233edc276ea7fff56 (diff) | |
| parent | d08ea8a92c7ac99ed51d17abde31d740211c3b92 (diff) | |
| download | mruby-dee895ae79570bf87ea6ae9c6f8c34bbf3b05e31.tar.gz mruby-dee895ae79570bf87ea6ae9c6f8c34bbf3b05e31.zip | |
Merge pull request #5482 from jbampton/standardize-backtick-commands
Standardize commands inside backticks
Diffstat (limited to 'doc/guides/compile.md')
| -rw-r--r-- | doc/guides/compile.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/guides/compile.md b/doc/guides/compile.md index 08dbd850f..2923a2676 100644 --- a/doc/guides/compile.md +++ b/doc/guides/compile.md @@ -138,18 +138,18 @@ C Compiler has header searcher to detect installed library. If you need an include path of header file use `search_header_path`: ```ruby -# Searches ```iconv.h```. +# Searches `iconv.h`. # If found it will return include path of the header file. -# Otherwise it will return nil . +# Otherwise it will return nil. fail 'iconv.h not found' unless conf.cc.search_header_path 'iconv.h' ``` If you need a full file name of header file use `search_header`: ```ruby -# Searches ```iconv.h```. +# Searches `iconv.h`. # If found it will return full path of the header file. -# Otherwise it will return nil . +# Otherwise it will return nil. iconv_h = conf.cc.search_header 'iconv.h' print "iconv.h found: #{iconv_h}\n" ``` |
