Fix typos

This commit is contained in:
Iaroslav 2020-08-10 01:30:32 +07:00
parent e2e26c106f
commit 6329722131
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7
2 changed files with 3 additions and 5 deletions

View File

@ -58,12 +58,10 @@ interface NumericAlgebra<T> : Algebra<T> {
inline operator fun <A : Algebra<*>, R> A.invoke(block: A.() -> R): R = run(block)
/**
* Represents semispace, i.e. algebraic structure with associative binary operation called "addition" as well as
* Represents "semispace", i.e. algebraic structure with associative binary operation called "addition" as well as
* multiplication by scalars.
*
* In KMath groups are called spaces, and also define multiplication of element by [Number].
*
* @param T the type of element of this semigroup.
* @param T the type of element of this semispace.
*/
interface SpaceOperations<T> : Algebra<T> {
/**

View File

@ -1,7 +1,7 @@
package scientifik.kmath.structures
/**
* Specialized [MutableBuffer] implementation over [ShortBuffer].
* Specialized [MutableBuffer] implementation over [ShortArray].
*
* @property array the underlying array.
*/