Spring cleaning.

This commit is contained in:
alterNERDtive 2022-02-03 19:23:37 +01:00
parent 1baa1136ac
commit de5848b69d
3 changed files with 5 additions and 11 deletions

View file

@ -95,7 +95,7 @@ namespace alterNERDtive.Edna
/// <summary>
/// Finds a star system by id64.
/// </summary>
/// <param name="id64">The systems id64</param>
/// <param name="id64">The systems id64.</param>
/// <returns>The matching system.</returns>
public static StarSystem Find(ulong id64)
{

View file

@ -27,11 +27,11 @@ using Xunit;
namespace Test.Edna
{
/// <summary>
/// Tests all thisg Distance.
/// </summary>
public class DistanceTest {
public class DistanceTest
{
/// <summary>
/// Tests if the calculations are correct for some known distances.
/// </summary>

View file

@ -1,4 +1,4 @@
// <copyright file="SystemTest.cs" company="alterNERDtive">
// <copyright file="StarSystemTest.cs" company="alterNERDtive">
// Copyright 2021 alterNERDtive.
//
// This file is part of EDNA.
@ -17,14 +17,8 @@
// along with EDNA. If not, see &lt;https://www.gnu.org/licenses/&gt;.
// </copyright>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using alterNERDtive.Edna;
using Xunit;
namespace Test.Edna
{