Skip to content

Commit

Permalink
Fix missing closing parens error in user-vms
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondburned committed May 4, 2024
1 parent bac3fcc commit 45accb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions servers/cs306/user-vms/vps.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ <h2>Users</h2>
</li>
<li class="url">
<b>URL:</b>
{{ $url := ($user.id | strings.ReplaceAll "." "_" }}
<a href="https://{{ $url }}" target="_blank">{{ $url }}</a>
{{ $url := ($user.id | strings.ReplaceAll "." "_") }}
<a href="https://{{ $url }}" target="_blank">{{ $url }}</a>
</li>
<li class="ssh">
<b>SSH:</b>
Expand Down

0 comments on commit 45accb1

Please sign in to comment.