Fix broken link

This commit is contained in:
Matthew Esposito 2023-01-13 15:38:48 -05:00
parent 3c536471ad
commit 7f3e822680
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ use serde::{Deserialize, Serialize};
use time::OffsetDateTime;
// This is the local static that is intialized at runtime (technically at
// the first request *to the instance-info endpoint) and contains the data
// retrieved from the instance-info endpoint.
// the first request to the info endpoint) and contains the data
// retrieved from the info endpoint.
pub(crate) static INSTANCE_INFO: Lazy<InstanceInfo> = Lazy::new(InstanceInfo::new);
/// Handles instance info endpoint

View File

@ -68,7 +68,7 @@
{% block footer %}
<footer>
<div class="info-button">
<a href="/instance-info">View instance information</a>
<a href="/info">View instance information</a>
</div>
</footer>
{% endblock %}