diff options
author | Hans Bolinder <[email protected]> | 2015-11-04 13:04:49 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-11-04 13:04:49 +0100 |
commit | 4ddb88db95442d18abe654ba1ff788e98eebe375 (patch) | |
tree | 001b76ff15e5686da1527a65aefa43874399c782 /lib/stdlib/doc/src/assert_hrl.xml | |
parent | 4f085471fc4e1886bd7549cf135e7038a87e6a8e (diff) | |
parent | 15770ab1b5587e890b7e4f557a4803291a37d2f8 (diff) | |
download | otp-4ddb88db95442d18abe654ba1ff788e98eebe375.tar.gz otp-4ddb88db95442d18abe654ba1ff788e98eebe375.tar.bz2 otp-4ddb88db95442d18abe654ba1ff788e98eebe375.zip |
Merge branch 'hb/correct_doc_tags' into maint
* hb/correct_doc_tags:
[erl_docgen] Correct documentation
[dialyzer] Correct documentation
[hipe] Correct documentation
[test_server] Correct documentation
[tools] Correct documentation
[erts] Correct documentation
[stdlib] Correct documentation
[kernel] Correct documentation
Diffstat (limited to 'lib/stdlib/doc/src/assert_hrl.xml')
-rw-r--r-- | lib/stdlib/doc/src/assert_hrl.xml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/stdlib/doc/src/assert_hrl.xml b/lib/stdlib/doc/src/assert_hrl.xml index b85be514d8..ef4f928e57 100644 --- a/lib/stdlib/doc/src/assert_hrl.xml +++ b/lib/stdlib/doc/src/assert_hrl.xml @@ -77,9 +77,6 @@ erlc -DNOASSERT=true *.erl</code> </description> <section> - </section> - - <section> <title>Macros</title> <taglist> <tag><c>assert(BoolExpr)</c></tag> @@ -94,12 +91,12 @@ erlc -DNOASSERT=true *.erl</code> <tag><c>assertMatch(GuardedPattern, Expr)</c></tag> <item><p>Tests that <c>Expr</c> completes normally yielding a value - that matches <c>GuardedPattern</c>. For example: + that matches <c>GuardedPattern</c>. For example:</p> <code type="none"> - ?assertMatch({bork, _}, f())</code></p> - <p>Note that a guard <c>when ...</c> can be included: + ?assertMatch({bork, _}, f())</code> + <p>Note that a guard <c>when ...</c> can be included:</p> <code type="none"> - ?assertMatch({bork, X} when X > 0, f())</code></p> + ?assertMatch({bork, X} when X > 0, f())</code> </item> <tag><c>assertNotMatch(GuardedPattern, Expr)</c></tag> |