renamed @includeFunction to @includeFunctionBody to be more clear that the function definition itself won't be included into the kdocs

This commit is contained in:
James Strachan
2012-04-02 15:25:15 +01:00
parent 4d37672809
commit 3fb74d3e69
15 changed files with 88 additions and 88 deletions
@@ -392,7 +392,7 @@ class KModel(var context: BindingContext, val config: KDocConfig) {
// lets check for javadoc style @ tags and macros
if (text.startsWith("@")) {
val remaining = text.substring(1)
val macro = "includeFunction"
val macro = "includeFunctionBody"
if (remaining.startsWith(macro)) {
val next = remaining.substring(macro.length()).trim()
val words = next.split("\\s")