Skip to content

Commit 2a129ba

Browse files
Fixed typos in two files (#898)
Co-authored-by: rahulrameshan <[email protected]>
1 parent 52b9408 commit 2a129ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ agree to abide by the [Code of Conduct](CODE_OF_CONDUCT.md).
1111

1212
* After that create a branch for your changes. For example:
1313
* add_XXX if you will add new algorithms or data structures.
14-
* fix_XXX if you will fixe a bug on a certain algorithm or data structure.
14+
* fix_XXX if you will fix a bug on a certain algorithm or data structure.
1515
* test_XXX if you wrote a test/s.
1616
* doc_XXX if you added to or edited documentation.
1717

algorithms/matrix/matrix_exponentiation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def multiply(matA: list, matB: list) -> list:
22
"""
3-
Multiplies two square matrices matA and matB od size n x n
3+
Multiplies two square matrices matA and matB of size n x n
44
Time Complexity: O(n^3)
55
"""
66
n = len(matA)

0 commit comments

Comments
 (0)