From 60271b709471efb803416ef62b2309f0e9b603ea Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Wed, 22 May 2019 23:16:27 +1000 Subject: [PATCH] Fixed typo mutiplication -> multiplication. Signed-off-by: Brett Randall --- pandas/core/frame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index afe37bf198ab7..6bfa63012689d 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -918,7 +918,7 @@ def __len__(self): def dot(self, other): """ - Compute the matrix mutiplication between the DataFrame and other. + Compute the matrix multiplication between the DataFrame and other. This method computes the matrix product between the DataFrame and the values of an other Series, DataFrame or a numpy array.