diff runtime/doc/usr_41.txt @ 8673:ed7251c3e2d3

commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 20 21:08:34 2016 +0100 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 20 Mar 2016 21:15:06 +0100
parents abd64cf67bcf
children dda254280bab
line wrap: on
line diff
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -1,4 +1,4 @@
-*usr_41.txt*	For Vim version 7.4.  Last change: 2016 Feb 14
+*usr_41.txt*	For Vim version 7.4.  Last change: 2016 Mar 15
 
 		     VIM USER MANUAL - by Bram Moolenaar
 
@@ -889,9 +889,11 @@ Mappings:				    *mapping-functions*
 	wildmenumode()		check if the wildmode is active
 
 Testing:				    *test-functions*
-	assert_equal()       	assert that two expressions values are equal
+	assert_equal()		assert that two expressions values are equal
 	assert_false()		assert that an expression is false
 	assert_true()		assert that an expression is true
+	assert_exception()	assert that a command throws an exception
+	assert_fails()		assert that a function call fails
 
 Inter-process communication:
 	ch_open()		open a channel
@@ -932,7 +934,7 @@ Various:					*various-functions*
 	perleval()		evaluate Perl expression (|+perl|)
 	py3eval()		evaluate Python expression (|+python3|)
 	pyeval()		evaluate Python expression (|+python|)
-	wordcount()             get byte/word/char count of buffer
+	wordcount()		get byte/word/char count of buffer
 
 ==============================================================================
 *41.7*	Defining a function