Update runtime files.
diff --git a/runtime/doc/textprop.txt b/runtime/doc/textprop.txt
index c88ca37..72e70c4 100644
--- a/runtime/doc/textprop.txt
+++ b/runtime/doc/textprop.txt
@@ -1,4 +1,4 @@
-*textprop.txt* For Vim version 8.1. Last change: 2018 Dec 13
+*textprop.txt* For Vim version 8.1. Last change: 2018 Dec 14
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -72,8 +72,8 @@
To highlight the numbers: >
call prop_type_add('number', {'highlight': 'Constant'})
- call prop_add(11, 12, {'length': 3, 'type': 'number})
- call prop_add(11, 32, {'length': 4, 'type': 'number})
+ call prop_add(11, 12, {'length': 3, 'type': 'number'})
+ call prop_add(11, 32, {'length': 4, 'type': 'number'})
Setting "start_incl" and "end_incl" is useful when white space surrounds the
text, e.g. for a function name. Using false is useful when the text starts
@@ -86,7 +86,7 @@
^^^^^^ property with start_incl and end_incl not set
Nevertheless, when text is inserted or deleted the text may need to be parsed
-and the text properties updated. But this can be done asynchrnously.
+and the text properties updated. But this can be done asynchronously.
==============================================================================
2. Functions *text-prop-functions*