Skip to content

Commit 4f5155a

Browse files
authored
scale-generator: use flat and sharp symbols (#1942)
1 parent 2eaec0c commit 4f5155a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

exercises/scale-generator/description.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
Scales in Western music are based on the chromatic (12-note) scale. This
66
scale can be expressed as the following group of pitches:
77

8-
> A, A#, B, C, C#, D, D#, E, F, F#, G, G#
8+
> A, A, B, C, C, D, D, E, F, F, G, G
99
10-
A given sharp note (indicated by a #) can also be expressed as the flat
11-
of the note above it (indicated by a b) so the chromatic scale can also be
10+
A given sharp note (indicated by a ) can also be expressed as the flat
11+
of the note above it (indicated by a ) so the chromatic scale can also be
1212
written like this:
1313

14-
> A, Bb, B, C, Db, D, Eb, E, F, Gb, G, Ab
14+
> A, B♭, B, C, D♭, D, E♭, E, F, G♭, G, A♭
1515
1616
The major and minor scale and modes are subsets of this twelve-pitch
1717
collection. They have seven pitches, and are called diatonic scales.
@@ -23,8 +23,8 @@ a given tonic:
2323
| Key Signature | Major | Minor |
2424
| ------------- | --------------------- | -------------------- |
2525
| Natural | C | a |
26-
| Sharp | G, D, A, E, B, F# | e, b, f#, c#, g#, d# |
27-
| Flat | F, Bb, Eb, Ab, Db, Gb | d, g, c, f, bb, eb |
26+
| Sharp | G, D, A, E, B, F | e, b, f, c, g, d |
27+
| Flat | F, B♭, E♭, A♭, D♭, G♭ | d, g, c, f, b♭, e♭ |
2828

2929
Note that by common music theory convention the natural notes "C" and "a"
3030
follow the sharps scale when ascending and the flats scale when descending.
@@ -55,7 +55,7 @@ diatonic scales are built using only these two intervals between
5555
adjacent notes.
5656

5757
Non-diatonic scales can contain other intervals. An "augmented second"
58-
interval, written "A", has two interceding notes (e.g., from A to C or Db to E)
58+
interval, written "A", has two interceding notes (e.g., from A to C or D♭ to E)
5959
or a "whole step" plus a "half step". There are also smaller and larger
6060
intervals, but they will not figure into this exercise.
6161

@@ -74,10 +74,10 @@ For example, starting with G and using the seven intervals MMmMMMm, there would
7474
Note | Reason
7575
--|--
7676
G | Tonic
77-
A | M indicates a whole step from G, skipping G#
78-
B | M indicates a whole step from A, skipping A#
77+
A | M indicates a whole step from G, skipping G
78+
B | M indicates a whole step from A, skipping A
7979
C | m indicates a half step from B, skipping nothing
80-
D | M indicates a whole step from C, skipping C#
81-
E | M indicates a whole step from D, skipping D#
82-
F# | M indicates a whole step from E, skipping F
83-
G | m indicates a half step from F#, skipping nothing
80+
D | M indicates a whole step from C, skipping C
81+
E | M indicates a whole step from D, skipping D
82+
F | M indicates a whole step from E, skipping F
83+
G | m indicates a half step from F, skipping nothing

0 commit comments

Comments
 (0)