From b80d40c287789ec0cb430842923a0254c86a6150 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 2 May 2017 20:55:49 -0400 Subject: doc: Capitalize things more consistently. Upper or lower case depending on the official spelling, or the more consistent usage. --- docs/markdown/howtox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/markdown/howtox.md') diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index c765853..fbe1556 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -93,7 +93,7 @@ The coverage report can be found in the meson-logs subdirectory. ## Add some optimization to debug builds ## -By default the debug build does not use any optimizations. This is the desired approach most of the time. However some projects benefit from having some minor optimizations enabled. Gcc even has a specific compiler flag `-Og` for this. To enable its use, just issue the following command. +By default the debug build does not use any optimizations. This is the desired approach most of the time. However some projects benefit from having some minor optimizations enabled. GCC even has a specific compiler flag `-Og` for this. To enable its use, just issue the following command. ```console $ mesonconf -Dc_args=-Og -- cgit v1.1 From f3ad633f55b8f2ac744924ca38018c41ee035f1e Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 2 May 2017 21:03:27 -0400 Subject: doc: Fix several minor typos. --- docs/markdown/howtox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/markdown/howtox.md') diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index fbe1556..2c72e28 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -19,7 +19,7 @@ project('myproj', 'c', 'cpp', ## Enable threads -Lots of people seem to do this manually with `find_library('phtread')` or something similar. Do not do that. It is not portable. Instead do this. +Lots of people seem to do this manually with `find_library('pthread')` or something similar. Do not do that. It is not portable. Instead do this. ```meson thread_dep = dependency('threads') -- cgit v1.1 From 40d7704cd5d639bb7e7149425501c31254a85f0f Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 2 May 2017 22:17:24 -0400 Subject: doc: Use https links wherever possible. --- docs/markdown/howtox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/markdown/howtox.md') diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index 2c72e28..2e43276 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -103,7 +103,7 @@ This causes all subsequent builds to use this command line argument. ## Use address sanitizer -Clang comes with a selection of analysis tools such as the [address sanitizer](http://clang.llvm.org/docs/AddressSanitizer.html). Meson has native support for these with the `b_sanitize` option. +Clang comes with a selection of analysis tools such as the [address sanitizer](https://clang.llvm.org/docs/AddressSanitizer.html). Meson has native support for these with the `b_sanitize` option. ```console $ meson -Db_sanitize=address -- cgit v1.1