From 9c593c72957e804dbb964aecc599e174992a328a Mon Sep 17 00:00:00 2001 From: TheBoxyBear <15822255+TheBoxyBear@users.noreply.github.com> Date: Mon, 15 Jan 2024 19:06:29 -0500 Subject: [PATCH] Fix links in getting-started --- Docs/articles/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Docs/articles/getting-started.md b/Docs/articles/getting-started.md index 845121fa..0b4292ea 100644 --- a/Docs/articles/getting-started.md +++ b/Docs/articles/getting-started.md @@ -38,7 +38,7 @@ A song contains four main components: - Metadata - Miscellaneous info about the song, such as title, album, charter etc. - Sync track - Markers that define time signature and tempo -- [Global events](Events.md) - Events that are not tied to an instrument +- [Global events](events.md) - Events that are not tied to an instrument - Instruments - The instrument track data ### Metadata @@ -117,7 +117,7 @@ syncTrack.Tempo.RemoveUnneeded(); syncTrack.TimeSignatures.RemoveUnneeded(); ``` -ChartTools includes other utilities for various purposes. [Learn more](Tools.md). +ChartTools includes other utilities for various purposes. [Learn more](tools.md). ## Writing files Finally, changes can be saved to a file using the `ToFile` method of the `Song` class, with the format determined by the file extension. @@ -133,4 +133,4 @@ ChartFile.ReplaceInstrument("output.chart", guitar, ); ``` -Like when reading files, writing operations can be configured to alter how they deal with errors. [Learn more about configuring IO operations](Configuration.md). \ No newline at end of file +Like when reading files, writing operations can be configured to alter how they deal with errors. [Learn more about configuring IO operations](configuration.md). \ No newline at end of file