pidgin/nest

Fix a typo on the version control page

2020-11-01, Gary Kramlich
82712858eddf
Fix a typo on the version control page

Testing Done:
Built and ran locally.

Bugs closed: NEST-37

Reviewed at https://reviews.imfreedom.org/r/189/
{{ range sort .Site.Data.gsoc "year" "desc" }}
<h3 id="gsoc-{{ .year }}">{{ .year }}</h3>
<table>
<thead>
<th>{{ T "Project" }}</th>
<th>{{ T "Student" }}</th>
<th>{{ T "Mentor" }}</th>
<th>{{ T "Status" }}</th>
</thead>
<tbody>
{{ range .participants }}
<tr>
<td>{{ .project }}</td>
<td>{{ .student }}</td>
<td>{{ .mentor }}</td>
<td>{{ .status | markdownify }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}