This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 12441908765e53e4d976876fa456ef4eb9c5ef77 Author: Shad Storhaug <[email protected]> AuthorDate: Tue Mar 30 19:40:32 2021 +0700 docs: Lucene.Net.Expressions: Fixed broken formatting and links (see #284, #300) --- src/Lucene.Net.Expressions/JS/package.md | 4 ++-- src/Lucene.Net.Expressions/overview.md | 7 +++++-- src/Lucene.Net.Expressions/package.md | 6 +++--- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/Lucene.Net.Expressions/JS/package.md b/src/Lucene.Net.Expressions/JS/package.md index 3ce22e2..3e361cb 100644 --- a/src/Lucene.Net.Expressions/JS/package.md +++ b/src/Lucene.Net.Expressions/JS/package.md @@ -1,4 +1,4 @@ ---- +--- uid: Lucene.Net.Expressions.JS summary: *content --- @@ -46,4 +46,4 @@ A Javascript expression is a numeric expression specified using an expression sy JavaScript order of precedence rules apply for operators. Shortcut evaluation is used for logical operators—the second argument is only evaluated if the value of the expression cannot be determined after evaluating the first argument. For example, in the expression `a || b`, `b` is only evaluated if a is not true. - To compile an expression, use <xref:Lucene.Net.Expressions.Js.JavascriptCompiler>. \ No newline at end of file + To compile an expression, use <xref:Lucene.Net.Expressions.JS.JavascriptCompiler>. \ No newline at end of file diff --git a/src/Lucene.Net.Expressions/overview.md b/src/Lucene.Net.Expressions/overview.md index 77ce8cf..4cf4320 100644 --- a/src/Lucene.Net.Expressions/overview.md +++ b/src/Lucene.Net.Expressions/overview.md @@ -1,4 +1,4 @@ ---- +--- uid: Lucene.Net.Expressions summary: *content --- @@ -24,6 +24,9 @@ summary: *content The expressions module is new to Lucene 4.6. It provides an API for dynamically computing per-document values based on string expressions. - The module is organized in two sections: 1. <xref:Lucene.Net.Expressions> - The abstractions and simple utilities for common operations like sorting on an expression 2. <xref:Lucene.Net.Expressions.Js> - A compiler for a subset of JavaScript expressions + The module is organized in two sections: + +1. <xref:Lucene.Net.Expressions> - The abstractions and simple utilities for common operations like sorting on an expression +2. <xref:Lucene.Net.Expressions.JS> - A compiler for a subset of JavaScript expressions For sample code showing how to use the API, see <xref:Lucene.Net.Expressions.Expression>. \ No newline at end of file diff --git a/src/Lucene.Net.Expressions/package.md b/src/Lucene.Net.Expressions/package.md index c4c9646..593ffd0 100644 --- a/src/Lucene.Net.Expressions/package.md +++ b/src/Lucene.Net.Expressions/package.md @@ -1,4 +1,4 @@ ---- +--- uid: Lucene.Net.Expressions summary: *content --- @@ -22,8 +22,8 @@ summary: *content # expressions - <xref:Lucene.Net.Expressions.Expression> - result of compiling an expression, which can evaluate it for a given document. Each expression can have external variables are resolved by {@code Bindings}. + <xref:Lucene.Net.Expressions.Expression> - result of compiling an expression, which can evaluate it for a given document. Each expression can have external variables are resolved by <xref:Lucene.Net.Expressions.Bindings>. <xref:Lucene.Net.Expressions.Bindings> - abstraction for binding external variables to a way to get a value for those variables for a particular document (ValueSource). - <xref:Lucene.Net.Expressions.SimpleBindings> - default implementation of bindings which provide easy ways to bind sort fields and other expressions to external variables \ No newline at end of file + <xref:Lucene.Net.Expressions.SimpleBindings> - default implementation of bindings which provide easy ways to bind sort fields and other expressions to external variables. \ No newline at end of file
