@@ -2262,7 +2262,7 @@ public ArrayExpr MkConstArray(Sort domain, Expr v)
2262
2262
/// Maps f on the argument arrays.
2263
2263
/// </summary>
2264
2264
/// <remarks>
2265
- /// Eeach element of <c>args</c> must be of an array sort <c>[domain_i -> range_i]</c>.
2265
+ /// Each element of <c>args</c> must be of an array sort <c>[domain_i -> range_i]</c>.
2266
2266
/// The function declaration <c>f</c> must have type <c> range_1 .. range_n -> range</c>.
2267
2267
/// <c>v</c> must have sort range. The sort of the result is <c>[domain_i -> range]</c>.
2268
2268
/// <seealso cref="MkArraySort(Sort, Sort)"/>
@@ -2862,7 +2862,7 @@ public Expr MkNumeral(string v, Sort ty)
2862
2862
}
2863
2863
2864
2864
/// <summary>
2865
- /// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
2865
+ /// Create a Term of a given sort. This function can be used to create numerals that fit in a machine integer.
2866
2866
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
2867
2867
/// </summary>
2868
2868
/// <param name="v">Value of the numeral</param>
@@ -2878,7 +2878,7 @@ public Expr MkNumeral(int v, Sort ty)
2878
2878
}
2879
2879
2880
2880
/// <summary>
2881
- /// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
2881
+ /// Create a Term of a given sort. This function can be used to create numerals that fit in a machine integer.
2882
2882
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
2883
2883
/// </summary>
2884
2884
/// <param name="v">Value of the numeral</param>
@@ -2894,7 +2894,7 @@ public Expr MkNumeral(uint v, Sort ty)
2894
2894
}
2895
2895
2896
2896
/// <summary>
2897
- /// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
2897
+ /// Create a Term of a given sort. This function can be used to create numerals that fit in a machine integer.
2898
2898
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
2899
2899
/// </summary>
2900
2900
/// <param name="v">Value of the numeral</param>
@@ -2910,7 +2910,7 @@ public Expr MkNumeral(long v, Sort ty)
2910
2910
}
2911
2911
2912
2912
/// <summary>
2913
- /// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
2913
+ /// Create a Term of a given sort. This function can be used to create numerals that fit in a machine integer.
2914
2914
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
2915
2915
/// </summary>
2916
2916
/// <param name="v">Value of the numeral</param>
@@ -3211,7 +3211,7 @@ public Quantifier MkForall(Expr[] boundConstants, Expr body, uint weight = 1, Pa
3211
3211
/// Create an existential Quantifier.
3212
3212
/// </summary>
3213
3213
/// <remarks>
3214
- /// Creates an existential quantifier using de-Brujin indexed variables.
3214
+ /// Creates an existential quantifier using de-Bruijn indexed variables.
3215
3215
/// (<see cref="MkForall(Sort[], Symbol[], Expr, uint, Pattern[], Expr[], Symbol, Symbol)"/>).
3216
3216
/// </remarks>
3217
3217
public Quantifier MkExists ( Sort [ ] sorts , Symbol [ ] names , Expr body , uint weight = 1 , Pattern [ ] patterns = null , Expr [ ] noPatterns = null , Symbol quantifierID = null , Symbol skolemID = null )
0 commit comments