From a50534af13c4700e4e7ddde95167a17818d529f4 Mon Sep 17 00:00:00 2001 From: ZSchweyk <89613261+ZSchweyk@users.noreply.github.com> Date: Thu, 23 Dec 2021 15:53:45 -0800 Subject: [PATCH] Update README.md --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 998efde..2ccb712 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ pip install ZMusicLibrary ``` ### -##Note +Note += Create a note object: ``` @@ -50,7 +51,8 @@ n = Note("C##4") print(n.simplify_notation()) # prints Note(D4) ``` ### -##Chord +Chord += Create a pre-defined chord object: #### Here are the following chord types, and the intervals that they consist of: @@ -135,7 +137,8 @@ print(c1 != c2) # True ``` ### -##Scale +Scale += Create a pre-defined scale object: #### Here are the following scale types, and the intervals that they consist of: @@ -190,4 +193,4 @@ print(s1 > s2) # False print(s1 >= s2) # False print(s1 == s2) # False print(s1 != s2) # True -``` \ No newline at end of file +```