diff options
Diffstat (limited to 'candle-core/src/tensor.rs')
-rw-r--r-- | candle-core/src/tensor.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/candle-core/src/tensor.rs b/candle-core/src/tensor.rs index dd1b44b0..82532f20 100644 --- a/candle-core/src/tensor.rs +++ b/candle-core/src/tensor.rs @@ -590,9 +590,9 @@ impl Tensor { /// /// * `args` - A slice of 1D tensors. /// * `xy_indexing` - Whether to use xy indexing or ij indexing. If xy is selected, the - /// first dimension corresponds to the cardinality of the second input and the second - /// dimension corresponds to the cardinality of the first input. If ij is selected, the - /// dimensions are in the same order as the cardinality of the inputs. + /// first dimension corresponds to the cardinality of the second input and the second + /// dimension corresponds to the cardinality of the first input. If ij is selected, the + /// dimensions are in the same order as the cardinality of the inputs. /// /// # Examples /// |